diff --git a/CLAUDE.md b/CLAUDE.md index 5bc37be..8f88287 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -20,6 +20,9 @@ uv pip install -e . # Install with dev dependencies (pytest, hypothesis) uv pip install -e ".[dev]" + +# Optional Textual UI for `vlm review-plan --tui` +uv pip install -e ".[tui]" ``` ### Testing diff --git a/GEMINI.md b/GEMINI.md index e7d0dd8..b793c72 100644 --- a/GEMINI.md +++ b/GEMINI.md @@ -1,7 +1,7 @@ # GEMINI.md ## Documentation Status -- Synced with repository refactor baseline on 2026-02-16 (source of truth: `CHANGELOG.md`). +- Synced with repository refactor baseline on 2026-02-20 (source of truth: `CHANGELOG.md`). This document provides a comprehensive overview of the Video Library Manager (VLM) project, intended to be used as instructional context for Gemini. @@ -11,10 +11,12 @@ The Video Library Manager (VLM) is a Python-based CLI tool designed for managing **Core Functionality:** -* **Scanning & Parsing:** Discovers video files, extracts metadata (file info, video properties via `ffprobe`), and parses filenames to identify titles, years, seasons, and episodes. +* **Scanning & Parsing:** Discovers video files, extracts metadata. Proactively detects `ffprobe` for video properties with graceful fallback to file-level metadata. Parses filenames for titles, years, seasons, and episodes, with specific support for Anime-style hyphenated numbering and release group stripping. * **Metadata Enrichment:** Augments local data with information from TMDB, including bilingual titles and reputation scores. It uses a local SQLite cache to improve performance. * **Analysis:** Detects duplicate files (with quality comparisons) and identifies gaps in TV series episodes. -* **Planning & Execution:** Generates a reviewable JSON-based execution plan for file operations (move, rename, quarantine). The plan is executed only upon user confirmation. +* **Planning & Execution:** Generates a reviewable JSON-based execution plan for file operations (move, rename, quarantine). Supports "safe mode" and directory preservation. +* **Plan Review Cycle:** Exports high-risk operations to CSV for manual confirmation (`review-plan`) and synchronizes user decisions back to the master plan (`apply-review`), enabling a full human-in-the-loop workflow. +* **Quarantine Management:** Safely isolates files for review, with full support for listing and restoration. * **Reporting:** Creates reports for inventory, duplicate files, and series completeness. * **State Management:** Tracks the status of files throughout the organization workflow. @@ -29,14 +31,25 @@ The Video Library Manager (VLM) is a Python-based CLI tool designed for managing **Architecture:** -The project follows a modular structure located in the `src/vlm` directory. Key modules include: +The project follows a modular structure located in the `src/vlm` directory. * `cli.py`: The main entry point for the CLI, using Click. -* `commands/*.py`: Implementation of the individual CLI commands (scan, parse, enrich, etc.). +* `commands/*.py`: Implementation of the individual CLI commands (scan, parse, enrich, analyze, plan, execute/rollback). * `scanner.py`, `parser.py`, `enrichment.py`, `analysis.py`, `planner.py`, `executor.py`: Core logic for the different stages of the workflow. +* `io.py`: Unified I/O layer for JSON and CSV handling. +* `cache.py`: Local SQLite cache for TMDB metadata. +* `context.py`: CLI context and state management for command execution. +* `duplicate_resolve.py`: Logic for resolving duplicate files based on quality and metadata. +* `logging_config.py`: Centralized logging configuration. +* `plan_review.py`: Risk analysis and manual review generation for execution plans. +* `quarantine.py`: Management of quarantined files (listing, adding, restoring). +* `reports.py`: Generation of inventory, completeness, and duplicate reports. +* `state.py`: File status tracking and persistence (reviewed, ignored, planned, etc.). +* `transaction.py`: Atomic filesystem operations and transaction logging for reliability. * `providers/tmdb.py`: Client for interacting with the TMDB API. * `models.py`: Defines the data structures used throughout the application. * `config.py`: Manages application configuration from a YAML file. +* `utils.py`: General utility functions (formatting, path handling). ## Building and Running @@ -57,9 +70,13 @@ The main entry point is the `vlm` command. * Enrich metadata: `uv run vlm enrich` * Analyze the library: `uv run vlm analyze` * Generate a plan: `uv run vlm plan` +* Review a plan: `uv run vlm review-plan` * Execute the plan (dry-run): `uv run vlm execute` * Execute the plan (with confirmation): `uv run vlm execute --confirm` * Rollback the last execution: `uv run vlm rollback` +* Generate reports: `uv run vlm report [inventory|completeness|duplicates|summary]` +* Manage quarantine: `uv run vlm quarantine [list|add|restore]` +* Manage file states: `uv run vlm state [show|set|query|clear]` **Running tests:** diff --git a/README.md b/README.md index 060792c..2f756e8 100644 --- a/README.md +++ b/README.md @@ -35,6 +35,9 @@ uv pip install -e . # Install with development dependencies uv pip install -e ".[dev]" + +# Optional: Textual TUI for `vlm review-plan --tui` +uv pip install -e ".[tui]" ``` ## Quick Start @@ -230,6 +233,8 @@ vlm plan --analysis artifacts/analysis.json # 7. Review the plan in terminal (summary + high-risk preview) vlm review-plan +# Optional: interactive full-screen review (install `.[tui]` first) +vlm review-plan --tui # Optional: control preview size vlm review-plan --preview-limit 20 # Optional: show every high-risk operation in terminal @@ -352,6 +357,9 @@ vlm plan --input my_identities.json --analysis my_analysis.json --output my_plan # Export high-risk operations and preview them in terminal vlm review-plan +# Interactive Textual UI (install optional dependency: uv pip install -e ".[tui]") +vlm review-plan --tui + # Preview first N high-risk operations in terminal (default: 10) vlm review-plan --preview-limit 20 diff --git a/docs/TECHNICAL_REVIEW.md b/docs/TECHNICAL_REVIEW.md new file mode 100644 index 0000000..9dbb520 --- /dev/null +++ b/docs/TECHNICAL_REVIEW.md @@ -0,0 +1,152 @@ +# Technical review: video-library-manager + +## Metadata + +| Field | Value | +|--------|--------| +| Repository path | `dl-organizer` (package `vlm`) | +| Verification date (UTC) | 2026-04-06 | +| Git revision verified | `ea21e15` | +| Test run | `uv run pytest -q` → **496 passed** | + +## Scope + +- Source: `src/vlm/**/*.py`, `tests/` +- Config: `pyproject.toml` +- Assumption: single-user local library; artifacts semi-trusted; no formal threat model in repo. + +## Executive summary + +Architecture and tests are solid. Verified gaps: **no `library_root` check on move/rename source** in executor; **`by_quality` falls back to index 0 without surfacing reason**; **quarantine raises `ValueError` for unsupported category** while `execute_plan` has no per-operation try/except, so one bad op can abort the run; **duplicate join uses exact string path keys**; **`find` non-zero exit still consumes stdout**. + +Weighted score (0–10): **8.0**. + +## Score rubric + +| Criterion | Score | Notes | +|-----------|-------|--------| +| Module boundaries / pipeline | 8.5 | Commands → domain modules; scan→parse→analyze→plan→execute is explicit. | +| Execution safety (filesystem) | 7.0 | Destination under root checked; **source not checked** for move/rename. | +| Planning / duplicate logic | 7.5 | Multiple strategies; string path identity; silent `by_quality` fallback; unknown `strategy` → keep index 0 (`duplicate_resolve.py:48`). | +| Data I/O & validation | 8.0 | `io.py` validates identities/analysis/plan shapes; validated objects remain dict-typed at boundaries (`type: ignore` in places). | +| Error handling consistency | 7.5 | Quarantine: `raise` vs `OperationResult` mismatch on category rejection. | +| Test signal | 8.5 | Broad `tests/`; path safety and resolver covered (`test_path_safety.py`, `test_duplicate_resolve.py`, etc.). | +| Dependencies | 9.0 | Runtime: `click`, `pyyaml` only (`pyproject.toml:7–9`). | + +## Findings + +### F1 [High] Move/rename: source not constrained to `library_root` + +**Evidence:** `ExecutionEngine._perform_operation` checks destination with `is_within_root(..., self.config.library_root)` then calls `operation.source_path.rename(...)` without checking the source (`executor.py:354–377`). + +**Impact:** Malformed or hand-edited `plan.json` can rename **from any path the process can access** into the library tree. `QuarantineManager.quarantine_file` instead requires `file_path.relative_to(self.config.library_root)` (`quarantine.py:133–137`). + +**Recommendation:** For `move` / `rename`, require `is_within_root(operation.source_path, self.config.library_root)` (after `Path` resolution policy is defined). Fail with `OperationResult(success=False)`. Optional config gate for deliberate “import from outside,” default off. Add test alongside `tests/test_path_safety.py:76–103`. + +--- + +### F2 [Medium] `by_quality`: silent fallback to first item + +**Evidence:** `choose_keep_index` — `if quality_comparison is None or len(quality_comparison) != len(items): return 0` (`duplicate_resolve.py:40–42`). + +**Impact:** Behavior equals **input order**, not quality, with no structured flag in plan metadata from this function alone. + +**Recommendation:** Return `None` and skip auto-quarantine for that group, or require CLI/plan failure when `duplicate_keep == by_quality` and rows misaligned, or write explicit `metadata` / summary line when fallback occurs. + +--- + +### F3 [Medium] Duplicate group ↔ identities join: exact path strings + +**Evidence:** `path_to_index = {str(vf.path): i for ...}` and `indices = [path_to_index[p] for p in paths if p in path_to_index]` (`planner.py:108–111`). Analysis `files` must match `str(VideoFile.path)` byte-for-byte. + +**Impact:** Symlinks, differing normalization between analysis writer and identities loader, or OS case rules can **drop** files from duplicate resolution. + +**Recommendation:** Normalize keys (e.g. `utils.canonical_path_str`) at both analysis emission and plan consumption; document contract; regression test if symlinks are in scope. + +--- + +### F4 [Low–Medium] Quarantine: `ValueError` vs `OperationResult` + +**Evidence:** Unsupported category path does `raise ValueError(error_msg)` after logging (`quarantine.py:116–129`). Other failure modes return `OperationResult`. + +**Evidence:** `execute_plan` loop calls `execute_operation` with no try/except (`executor.py:110–112`). + +**Impact:** One invalid quarantine operation (e.g. manual plan) can **abort** the whole execute pass instead of recording a single failed result. + +**Recommendation:** Return failed `OperationResult` for unsupported category; reserve exceptions for invariant violations only. + +--- + +### F5 [Low] `find` non-zero exit: stdout still parsed + +**Evidence:** On `process.returncode != 0`, code logs stderr if present, then always parses `stdout` into paths (`scanner.py:178–192`). + +**Impact:** Partial or stale listing possible without hard failure. + +**Recommendation:** Document behavior; optionally fail if `returncode != 0` and empty result, or add `--strict-scan`. + +--- + +### F6 [Low] Optional dependencies: `textual` in both `dev` and `tui` + +**Evidence:** `pyproject.toml:13–16` (`dev`), `18–19` (`tui`). + +**Impact:** Install surface ambiguity only. + +**Recommendation:** Document that `dev` includes Textual for TUI-related tests, or slim `dev` if CI wants fewer deps. + +--- + +### F7 [Informational] Validated JSON remains dict-typed at I/O edge + +**Evidence:** `validate_plan_json` returns `dict` (`io.py:224–251`); constructors may still bridge dict ↔ dataclass elsewhere. + +**Impact:** Field drift between validator and `models.py` possible over time. + +**Recommendation:** Single factory path: validated dict → domain objects for hot paths. + +--- + +### F8 [Informational] Unknown `duplicate_keep` strategy string + +**Evidence:** After strategy checks, `choose_keep_index` falls through to `return 0` (`duplicate_resolve.py:48`). + +**Impact:** Config typo **keeps first duplicate** like `first_seen` without failing load. + +**Recommendation:** Validate `duplicate_keep` in `config.py` / `validate_config` against an allowlist; reject unknown values. + +## Verified strengths + +| Claim | Evidence | +|--------|----------| +| `find` invoked without shell string | argv list: `subprocess.Popen(command, ...)` (`scanner.py:171–172`, `164–169`). | +| Path component sanitization | `sanitize_path_component` strips controls and separators (`utils.py:65–75`); planner uses it before templates (`planner.py:301`, `419`). | +| Destination under library in planner | `is_within_root(destination, config.library_root)` (`planner.py:321`, `440`). | +| Quarantine manifest two-phase | Pending manifest write before `rename` (`quarantine.py:221–268` region). | +| JSON artifact validation | `_validate_parsed_identities_json`, `_validate_analysis_json`, `validate_plan_json` (`io.py:157–251`). | +| Parallel ffprobe | `ThreadPoolExecutor` when `include_video_metadata` and more than one path (`scanner.py:85–101`). | + +## Priority order + +1. F1 +2. F2 +3. F4 +4. F3 +5. F8, F5, F6, F7 + +## Verification log (document vs codebase) + +| Statement in this doc | Checked against | +|------------------------|-----------------| +| F1 source not under root guard | `executor.py:321–377` | +| F2 by_quality fallback | `duplicate_resolve.py:40–43` | +| F3 path_to_index | `planner.py:108–111` | +| F4 raise + no try in loop | `quarantine.py:116–129`, `executor.py:110–112` | +| F5 find returncode | `scanner.py:178–192` | +| F6 pyproject optional | `pyproject.toml:12–20` | +| F7 validate_plan_json returns dict | `io.py:224–251` | +| F8 unknown strategy | `duplicate_resolve.py:36–48` | +| Strengths table | `scanner.py`, `utils.py`, `planner.py`, `quarantine.py`, `io.py` as cited | +| 496 tests passed | `uv run pytest -q` on 2026-04-06 | + +This document is evidence-based against the paths above; behavior not re-listed here is **not** claimed verified. diff --git a/identities.json b/identities.json index 4343fae..b2d0d6d 100644 --- a/identities.json +++ b/identities.json @@ -1,9 +1,9 @@ { - "vlm_schema_version": "2.0", + "vlm_schema_version": "1.0", "metadata": { - "generated": "2026-02-13T03:25:08", + "generated": "2026-02-20T15:01:42", "source_inventory": "inventory.csv", - "total_files": 4710 + "total_files": 4726 }, "movies": [ { @@ -13,15 +13,7 @@ "title": "Land of Bad", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8503951568, - "modified_timestamp": "2024-07-28T11:52:17+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6817.408, - "bitrate_kbps": 9979 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Hunt.2022.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -30,15 +22,7 @@ "title": "Hunt", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10707030343, - "modified_timestamp": "2023-01-21T14:37:44+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7523.008, - "bitrate_kbps": 11385 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Sample/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -47,15 +31,7 @@ "title": "Your Eyes Tell", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57755187, - "modified_timestamp": "2022-03-12T13:58:51+00:00", - "resolution": "1280x694", - "codec": "h264", - "duration_seconds": 65.893, - "bitrate_kbps": 7011 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi/Your.Eyes.Tell.2020.720p.BluRay.x264-WiKi.mkv", @@ -64,15 +40,7 @@ "title": "Your Eyes Tell", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4694810534, - "modified_timestamp": "2022-03-12T13:59:33+00:00", - "resolution": "1280x694", - "codec": "h264", - "duration_seconds": 7378.4, - "bitrate_kbps": 5090 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Wish.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -81,15 +49,7 @@ "title": "Wish", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105017738, - "modified_timestamp": "2021-05-04T13:55:26+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.523, - "bitrate_kbps": 13655 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wish.2020.1080p.BluRay.x264.DTS-WiKi/Wish.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -98,15 +58,7 @@ "title": "Wish", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9661350324, - "modified_timestamp": "2021-05-04T14:07:40+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6500.502, - "bitrate_kbps": 11889 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -115,15 +67,7 @@ "title": "Amsterdam", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 171966154, - "modified_timestamp": "2022-12-08T07:32:22+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 67.656, - "bitrate_kbps": 20334 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Amsterdam.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -132,15 +76,7 @@ "title": "Amsterdam", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8629987692, - "modified_timestamp": "2022-12-08T07:35:21+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8054.891, - "bitrate_kbps": 8571 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH/Legacy.Of.Lies.2020.1080p.BluRay.x264.DTS-PTH.mkv", @@ -149,15 +85,7 @@ "title": "Legacy Of Lies", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8761015695, - "modified_timestamp": "2021-08-08T04:37:39+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6098.101, - "bitrate_kbps": 11493 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Sample/Food.Luck.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -166,15 +94,7 @@ "title": "Food Luck", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57303025, - "modified_timestamp": "2021-05-13T06:53:00+00:00", - "resolution": "1280x690", - "codec": "h264", - "duration_seconds": 90.655, - "bitrate_kbps": 5056 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Food.Luck.2020.720p.BluRay.x264-WiKi/Food.Luck.2020.720p.BluRay.x264-WiKi.mkv", @@ -183,15 +103,7 @@ "title": "Food Luck", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4297386135, - "modified_timestamp": "2021-05-13T06:53:01+00:00", - "resolution": "1280x690", - "codec": "h264", - "duration_seconds": 6294.304, - "bitrate_kbps": 5461 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Sample/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -200,15 +112,7 @@ "title": "Next Door Neighbor", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 93353172, - "modified_timestamp": "2021-07-08T13:26:35+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 65.428, - "bitrate_kbps": 11414 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi/Next.Door.Neighbor.2020.720p.BluRay.x264-WiKi.mkv", @@ -217,15 +121,7 @@ "title": "Next Door Neighbor", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6190903783, - "modified_timestamp": "2021-07-08T13:32:18+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7797.824, - "bitrate_kbps": 6351 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi/Offbeat.Cops.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -234,15 +130,7 @@ "title": "Offbeat Cops", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4688669372, - "modified_timestamp": "2023-02-07T05:40:04+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7140.16, - "bitrate_kbps": 5253 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bullet.Train.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Bullet.Train.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -251,15 +139,7 @@ "title": "Bullet Train", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 29045389544, - "modified_timestamp": "2023-03-29T13:57:32+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 7591.585, - "bitrate_kbps": 30607 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/Sample/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -268,15 +148,7 @@ "title": "R I P D", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 108365190, - "modified_timestamp": "2022-11-16T16:36:47+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 65.115, - "bitrate_kbps": 13313 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi/R.I.P.D.2013.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -285,15 +157,7 @@ "title": "R I P D", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9395978742, - "modified_timestamp": "2022-11-16T16:44:16+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 5755.51, - "bitrate_kbps": 13060 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fast.X.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Fast.X.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -302,15 +166,7 @@ "title": "Fast X", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12420931973, - "modified_timestamp": "2023-08-03T12:30:19+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8450.464, - "bitrate_kbps": 11758 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Fall.Guy.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Fall.Guy.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -319,15 +175,7 @@ "title": "The Fall Guy", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10684473396, - "modified_timestamp": "2024-07-15T15:14:19+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7582.912, - "bitrate_kbps": 11272 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/少林足球.Shaolin.Soccer.2001.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Shaolin.Soccer.2001.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -336,15 +184,7 @@ "title": "Shaolin Soccer", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6538069858, - "modified_timestamp": "2021-02-17T16:37:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6596.347, - "bitrate_kbps": 7929 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/美人鱼.The.Mermaid.2016.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/The.Mermaid.2016.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -353,15 +193,7 @@ "title": "The Mermaid", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6563991622, - "modified_timestamp": "2021-02-17T16:35:34+00:00", - "resolution": "1920x1012", - "codec": "hevc", - "duration_seconds": 5625.787, - "bitrate_kbps": 9334 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/审死官.Justice.My.Foot.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Justice.My.Foot.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -370,15 +202,7 @@ "title": "Justice My Foot", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4278962833, - "modified_timestamp": "2021-05-13T00:04:48+00:00", - "resolution": "1920x1034", - "codec": "hevc", - "duration_seconds": 5961.408, - "bitrate_kbps": 5742 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/济公.The.Mad.Monk.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/The.Mad.Monk.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -387,15 +211,7 @@ "title": "The Mad Monk", "year": 1993, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5498179115, - "modified_timestamp": "2021-02-17T16:34:14+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 5329.6, - "bitrate_kbps": 8253 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/鹿鼎记.Royal.Tramp.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Royal.Tramp.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -404,15 +220,7 @@ "title": "Royal Tramp", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6777496659, - "modified_timestamp": "2021-02-17T16:35:33+00:00", - "resolution": "1920x1022", - "codec": "hevc", - "duration_seconds": 6606.892, - "bitrate_kbps": 8206 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/功夫.Kung.Fu.Hustle.2004.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Kung.Fu.Hustle.2004.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -421,15 +229,7 @@ "title": "Kung Fu Hustle", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4907368950, - "modified_timestamp": "2021-02-17T16:37:49+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 5966.016, - "bitrate_kbps": 6580 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/龙的传人.Legend.of.the.Dragon.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Legend.of.the.Dragon.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -438,15 +238,7 @@ "title": "Legend of the Dragon", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4365238086, - "modified_timestamp": "2021-02-17T16:35:03+00:00", - "resolution": "1920x1024", - "codec": "hevc", - "duration_seconds": 5733.603, - "bitrate_kbps": 6090 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/逃学威龙2.Fight.Back.to.School.2.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Fight.Back.to.School.2.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -455,15 +247,7 @@ "title": "Fight Back to School 2", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6906736700, - "modified_timestamp": "2021-02-17T16:36:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5908.16, - "bitrate_kbps": 9352 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/大话西游之月光宝盒.A.Chinese.Odyssey.Part.1.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/A.Chinese.Odyssey.Part.1.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -472,15 +256,7 @@ "title": "A Chinese Odyssey Part 1", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5142326994, - "modified_timestamp": "2021-02-17T16:36:10+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5295.584, - "bitrate_kbps": 7768 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/长江七号.CJ7.2008.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/CJ7.2008.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -489,15 +265,7 @@ "title": "CJ7", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6224189909, - "modified_timestamp": "2021-02-17T16:33:24+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 5301.338, - "bitrate_kbps": 9392 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/家有喜事.All‘s.Well.End‘s.Well.1992.Extended.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/All's.Well.End's.Well.1992.Extended.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -506,15 +274,7 @@ "title": "All's Well End's Well", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5128941033, - "modified_timestamp": "2021-05-13T00:04:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6372.544, - "bitrate_kbps": 6438 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/百变星君.Sixty.Million.Dollar.Man.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Sixty.Million.Dollar.Man.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -523,15 +283,7 @@ "title": "Sixty Million Dollar Man", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5632330104, - "modified_timestamp": "2021-02-17T16:35:55+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5423.959, - "bitrate_kbps": 8307 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/西游伏妖篇.Journey.to.the.West.The.Demons.Strike.Back.2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Journey.to.the.West.The.Demons.Strike.Back.2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -540,15 +292,7 @@ "title": "Journey to the West The Demons Strike Back", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13047776001, - "modified_timestamp": "2021-02-17T16:36:15+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 6508.928, - "bitrate_kbps": 16036 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/无敌幸运星.When.Fortune.Smiles.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/When.Fortune.Smiles.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -557,15 +301,7 @@ "title": "When Fortune Smiles", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6065640154, - "modified_timestamp": "2021-02-17T16:35:50+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 5694.23, - "bitrate_kbps": 8521 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/霹雳先锋.Final.Justice.1988.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Final.Justice.1988.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -574,15 +310,7 @@ "title": "Final Justice", "year": 1988, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6370730846, - "modified_timestamp": "2021-02-17T16:30:19+00:00", - "resolution": "1920x1040", - "codec": "hevc", - "duration_seconds": 5876.0, - "bitrate_kbps": 8673 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/整蛊专家.Tricky.Brains.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Tricky.Brains.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -591,15 +319,7 @@ "title": "Tricky Brains", "year": 1991, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3565893814, - "modified_timestamp": "2021-02-17T16:35:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6452.709, - "bitrate_kbps": 4420 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/九品芝麻官.Hail.the.Judge.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Hail.the.Judge.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -608,15 +328,7 @@ "title": "Hail the Judge", "year": 1994, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7675926246, - "modified_timestamp": "2021-02-17T16:36:01+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6404.125, - "bitrate_kbps": 9588 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/师兄撞鬼.Look.Out.Officer.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Look.Out.Officer.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -625,15 +337,7 @@ "title": "Look Out Officer", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5011302392, - "modified_timestamp": "2021-02-17T16:35:11+00:00", - "resolution": "1920x1032", - "codec": "hevc", - "duration_seconds": 5525.024, - "bitrate_kbps": 7256 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/逃学威龙.Fight.Back.to.School.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Fight.Back.to.School.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -642,15 +346,7 @@ "title": "Fight Back to School", "year": 1991, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6017261017, - "modified_timestamp": "2021-02-17T16:36:23+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6058.917, - "bitrate_kbps": 7944 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/大话西游之仙履奇缘.A.Chinese.Odyssey.Part.2.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/A.Chinese.Odyssey.Part.2.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -659,15 +355,7 @@ "title": "A Chinese Odyssey Part 2", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4471655772, - "modified_timestamp": "2021-02-17T16:36:04+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5984.084, - "bitrate_kbps": 5978 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/西游降魔篇.Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -676,15 +364,7 @@ "title": "Journey to the West Conquering the Demons", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7069807110, - "modified_timestamp": "2021-02-17T16:35:58+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 6583.264, - "bitrate_kbps": 8591 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/唐伯虎点秋香.Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -693,15 +373,7 @@ "title": "Flirting Scholar", "year": 1993, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9766127065, - "modified_timestamp": "2021-02-17T16:36:04+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6131.167, - "bitrate_kbps": 12742 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/鹿鼎记2:神龙教.Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -710,32 +382,7 @@ "title": "Royal Tramp II", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6108040701, - "modified_timestamp": "2021-02-17T16:35:54+00:00", - "resolution": "1920x1024", - "codec": "hevc", - "duration_seconds": 5859.648, - "bitrate_kbps": 8339 - } - }, - { - "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/赌侠.God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", - "filename": "God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", - "category": "movie", - "title": "God of Gamblers II", - "year": 1991, - "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5467405922, - "modified_timestamp": "2021-02-17T16:35:53+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6286.334, - "bitrate_kbps": 6957 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/望夫成龙.Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -744,15 +391,7 @@ "title": "Love is Love", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5004906707, - "modified_timestamp": "2021-02-17T16:31:05+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 5734.02, - "bitrate_kbps": 6982 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/大内密探零零发.Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -761,15 +400,7 @@ "title": "Forbidden City Cop", "year": 1996, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3857331231, - "modified_timestamp": "2021-02-17T16:36:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5322.667, - "bitrate_kbps": 5797 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/武状元苏乞儿.King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -778,15 +409,7 @@ "title": "King of Beggars", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6798150592, - "modified_timestamp": "2021-02-17T16:36:14+00:00", - "resolution": "1920x1024", - "codec": "hevc", - "duration_seconds": 6002.747, - "bitrate_kbps": 9060 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/赌侠2上海滩赌圣.God.of.Gamblers.III.Back.to.Shanghai.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/God.of.Gamblers.III.Back.to.Shanghai.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -795,15 +418,7 @@ "title": "God of Gamblers III Back to Shanghai", "year": 1991, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5779929684, - "modified_timestamp": "2021-02-17T16:36:21+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6994.334, - "bitrate_kbps": 6610 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/逃学威龙3.Fight.Back.to.School.3.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Fight.Back.to.School.3.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -812,15 +427,7 @@ "title": "Fight Back to School 3", "year": 1993, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6722618341, - "modified_timestamp": "2021-02-17T16:36:11+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5379.875, - "bitrate_kbps": 9996 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/玻璃樽(未删减版).Gorgeous.UNCUT.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Gorgeous.UNCUT.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -829,15 +436,7 @@ "title": "Gorgeous UNCUT", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6261551579, - "modified_timestamp": "2021-02-17T16:36:52+00:00", - "resolution": "1920x812", - "codec": "hevc", - "duration_seconds": 7191.04, - "bitrate_kbps": 6965 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/国产凌凌漆.From.Beijing.with.Love.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/From.Beijing.with.Love.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -846,15 +445,7 @@ "title": "From Beijing with Love", "year": 1994, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5202663344, - "modified_timestamp": "2021-02-17T16:37:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5018.084, - "bitrate_kbps": 8294 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/破坏之王.Love.on.Delivery.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Love.on.Delivery.1994.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -863,15 +454,7 @@ "title": "Love on Delivery", "year": 1994, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4442913262, - "modified_timestamp": "2021-02-17T16:35:51+00:00", - "resolution": "1920x1034", - "codec": "hevc", - "duration_seconds": 5821.888, - "bitrate_kbps": 6105 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/回魂夜.Out.of.the.Dark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Out.of.the.Dark.1995.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -880,15 +463,7 @@ "title": "Out of the Dark", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4506049998, - "modified_timestamp": "2021-02-17T16:26:55+00:00", - "resolution": "1920x1024", - "codec": "hevc", - "duration_seconds": 4966.688, - "bitrate_kbps": 7258 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -897,15 +472,7 @@ "title": "Kingdom 2 Far and Away", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862235279, - "modified_timestamp": "2023-01-05T01:02:23+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8000.0, - "bitrate_kbps": 5862 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Kingdom.2.Far.and.Away.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", @@ -914,15 +481,7 @@ "title": "Kingdom 2 Far and Away", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54181602, - "modified_timestamp": "2023-01-05T01:01:57+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 44.631, - "bitrate_kbps": 9711 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Sample/Exit.2019.720p.BluRay.x264-WiKi.Sample.mkv", @@ -931,15 +490,7 @@ "title": "Exit", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110434859, - "modified_timestamp": "2020-03-27T12:44:30+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 110.558, - "bitrate_kbps": 7991 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Exit.2019.720p.BluRay.x264-WiKi/Exit.2019.720p.BluRay.x264-WiKi.mkv", @@ -948,15 +499,7 @@ "title": "Exit", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5527821949, - "modified_timestamp": "2020-03-27T12:49:52+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6218.4, - "bitrate_kbps": 7111 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/神奇动物在哪里.Fantastic.Beasts.and.Where.to.Find.Them.2016.BluRay.1080p.x265.10bit.HDR10.2Audio.MNHD-FRDS/Fantastic.Beasts.and.Where.to.Find.Them.2016.BluRay.1080p.x265.10bit.HDR10.2Audio.MNHD-FRDS.mkv", @@ -965,15 +508,7 @@ "title": "Fantastic Beasts and Where to Find Them", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4249351369, - "modified_timestamp": "2022-01-23T11:02:20+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 7972.352, - "bitrate_kbps": 4264 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -982,15 +517,7 @@ "title": "Fallen", "year": 1998, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14951931154, - "modified_timestamp": "2020-11-02T15:33:14+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 7451.423, - "bitrate_kbps": 16052 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fallen.1998.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.1998.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -999,15 +526,7 @@ "title": "Fallen", "year": 1998, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 104890381, - "modified_timestamp": "2020-11-02T15:33:08+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 50.079, - "bitrate_kbps": 16755 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Knives.Out.2019.1080p.BluRay.x264-WiKi.mkv", @@ -1016,15 +535,7 @@ "title": "Knives Out", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15702235931, - "modified_timestamp": "2022-12-29T00:32:43+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7813.888, - "bitrate_kbps": 16076 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Knives.Out.2019.1080p.BluRay.x264-WiKi/Sample/Knives.Out.2019.1080p.BluRay.x264-WiKi.Sample.mkv", @@ -1033,15 +544,7 @@ "title": "Knives Out", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 125638086, - "modified_timestamp": "2022-12-29T00:32:16+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 62.712, - "bitrate_kbps": 16027 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1050,15 +553,7 @@ "title": "Kaguya-sama Love Is War", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10387064479, - "modified_timestamp": "2020-10-02T13:49:15+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6734.478, - "bitrate_kbps": 12338 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kaguya-sama.Love.Is.War.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -1067,15 +562,7 @@ "title": "Kaguya-sama Love Is War", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105369749, - "modified_timestamp": "2020-10-02T13:40:21+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 49.97, - "bitrate_kbps": 16869 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bad.Boys.Ride.or.Die.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Bad.Boys.Ride.or.Die.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -1084,15 +571,7 @@ "title": "Bad Boys Ride or Die", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10703518970, - "modified_timestamp": "2024-09-13T03:48:03+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6958.976, - "bitrate_kbps": 12304 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -1101,15 +580,7 @@ "title": "Happy End", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 87685249, - "modified_timestamp": "2022-07-30T03:37:15+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 62.478, - "bitrate_kbps": 11227 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi/Happy.End.1999.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -1118,15 +589,7 @@ "title": "Happy End", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8493398766, - "modified_timestamp": "2022-07-30T03:42:35+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5983.232, - "bitrate_kbps": 11356 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -1135,15 +598,7 @@ "title": "Signal The Movie", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 118188291, - "modified_timestamp": "2021-10-17T11:54:59+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 67.993, - "bitrate_kbps": 13905 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi/Signal.The.Movie.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1152,15 +607,7 @@ "title": "Signal The Movie", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10459862100, - "modified_timestamp": "2021-10-17T12:11:03+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 7306.752, - "bitrate_kbps": 11452 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/Sample/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.sample.mkv", @@ -1169,15 +616,7 @@ "title": "1778 Stories of Me and My Wife", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 106629405, - "modified_timestamp": "2020-09-29T11:47:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 49.635, - "bitrate_kbps": 17186 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi/1778.Stories.of.Me.and.My.Wife.2011.1080p.BluRay.x264-WiKi.mkv", @@ -1186,15 +625,7 @@ "title": "1778 Stories of Me and My Wife", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14489628540, - "modified_timestamp": "2020-09-29T12:03:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8406.432, - "bitrate_kbps": 13789 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Lord.of.the.Rings.The.War.of.the.Rohirrim.2024.1080p.BluRay.x265.10bit-WiKi/The.Lord.of.the.Rings.The.War.of.the.Rohirrim.2024.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -1203,15 +634,7 @@ "title": "The Lord of the Rings The War of the Rohirrim", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11203313864, - "modified_timestamp": "2025-02-18T07:25:59+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8056.424, - "bitrate_kbps": 11124 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/Sample/AI.Amok.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -1220,15 +643,7 @@ "title": "AI Amok", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 60675268, - "modified_timestamp": "2020-05-31T08:39:10+00:00", - "resolution": "1280x538", - "codec": "h264", - "duration_seconds": 76.852, - "bitrate_kbps": 6316 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/AI.Amok.2020.720p.BluRay.x264-WiKi/AI.Amok.2020.720p.BluRay.x264-WiKi.mkv", @@ -1237,15 +652,7 @@ "title": "AI Amok", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862877692, - "modified_timestamp": "2020-05-31T08:49:23+00:00", - "resolution": "1280x538", - "codec": "h264", - "duration_seconds": 7875.392, - "bitrate_kbps": 5955 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/P.S.I.Love.You.2007.1080p.BluRay.x265.10bit.DTS-ADE/P.S.I.Love.You.2007.1080p.BluRay.x265.10bit.DTS-ADE.mkv", @@ -1254,15 +661,7 @@ "title": "P S I Love You", "year": 2007, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9484317007, - "modified_timestamp": "2023-10-18T16:29:35+00:00", - "resolution": "1920x1040", - "codec": "hevc", - "duration_seconds": 7546.005, - "bitrate_kbps": 10054 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Call.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -1271,15 +670,7 @@ "title": "The Call", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5397751447, - "modified_timestamp": "2020-12-08T10:44:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6737.312, - "bitrate_kbps": 6409 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -1288,15 +679,7 @@ "title": "Ambulance", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 58086522, - "modified_timestamp": "2022-06-03T12:10:10+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 66.8, - "bitrate_kbps": 6956 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi/Ambulance.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -1305,15 +688,7 @@ "title": "Ambulance", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6882900054, - "modified_timestamp": "2022-06-03T12:15:25+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8180.192, - "bitrate_kbps": 6731 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Strange.World.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -1322,15 +697,7 @@ "title": "Strange World", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7550718931, - "modified_timestamp": "2023-02-10T12:04:52+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6105.683, - "bitrate_kbps": 9893 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Memoir.of.a.Snail.2024.2160p.BluRay.x265.10bit.DTS-WiKi/Memoir.of.a.Snail.2024.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -1339,15 +706,7 @@ "title": "Memoir of a Snail", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 18426769663, - "modified_timestamp": "2025-10-16T05:19:24+00:00", - "resolution": "3840x2076", - "codec": "hevc", - "duration_seconds": 5676.939, - "bitrate_kbps": 25967 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Boy.Kills.World.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Boy.Kills.World.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -1356,15 +715,7 @@ "title": "Boy Kills World", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9838075777, - "modified_timestamp": "2025-01-02T09:05:30+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6658.72, - "bitrate_kbps": 11819 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Rebel.Ridge.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Rebel.Ridge.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -1373,15 +724,7 @@ "title": "Rebel Ridge", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5397238873, - "modified_timestamp": "2025-01-09T05:42:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7899.712, - "bitrate_kbps": 5465 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Everything.Everywhere.All.At.Once.2022.1080p.WEB-DL.DDP5.1.H.264-EVO/Everything.Everywhere.All.At.Once.2022.1080p.WEB-DL.DDP5.1.H.264-EVO.mkv", @@ -1390,15 +733,7 @@ "title": "Everything Everywhere All At Once", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6877949518, - "modified_timestamp": "2022-05-18T10:59:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8359.104, - "bitrate_kbps": 6582 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Pig.the.Snake.and.the.Pigeon.2023.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/The.Pig.the.Snake.and.the.Pigeon.2023.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -1407,15 +742,7 @@ "title": "The Pig the Snake and the Pigeon", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6803985144, - "modified_timestamp": "2024-03-01T15:50:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8040.992, - "bitrate_kbps": 6769 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1424,15 +751,7 @@ "title": "The Wings of the Kirin", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11806129395, - "modified_timestamp": "2025-04-01T08:37:37+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7773.771, - "bitrate_kbps": 12149 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi/Sample/The.Wings.of.the.Kirin.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -1441,15 +760,7 @@ "title": "The Wings of the Kirin", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 94839952, - "modified_timestamp": "2025-04-01T08:34:26+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 60.529, - "bitrate_kbps": 12534 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Sample/Flowers.2010.1080p.BluRay.x264-WiKi.sample.mkv", @@ -1458,15 +769,7 @@ "title": "Flowers", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 115833919, - "modified_timestamp": "2020-09-30T12:28:34+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 45.962, - "bitrate_kbps": 20161 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Flowers.2010.1080p.BluRay.x264-WiKi/Flowers.2010.1080p.BluRay.x264-WiKi.mkv", @@ -1475,15 +778,7 @@ "title": "Flowers", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14974330142, - "modified_timestamp": "2020-09-30T12:34:42+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 6556.224, - "bitrate_kbps": 18271 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1492,15 +787,7 @@ "title": "Ticket to Paradise", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11547134172, - "modified_timestamp": "2022-12-08T10:49:13+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6241.238, - "bitrate_kbps": 14801 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Ticket.to.Paradise.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -1509,15 +796,7 @@ "title": "Ticket to Paradise", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 218636306, - "modified_timestamp": "2022-12-08T10:48:39+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.847, - "bitrate_kbps": 28280 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Young.Woman.and.the.Sea.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", @@ -1526,15 +805,7 @@ "title": "Young Woman and the Sea", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13342795164, - "modified_timestamp": "2024-10-06T12:05:04+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 7737.167, - "bitrate_kbps": 13796 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Feel 100% 1996 NF WEB-DL 1080p H.264 AAC & DD 2.0 3Audios-Dave.mkv", @@ -1543,15 +814,7 @@ "title": "Feel 100%", "year": 1996, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 1910568777, - "modified_timestamp": "2021-03-27T12:28:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5819.819, - "bitrate_kbps": 2626 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.mkv", @@ -1560,15 +823,7 @@ "title": "Shock Wave 2", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6297863827, - "modified_timestamp": "2021-06-04T12:00:41+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7219.776, - "bitrate_kbps": 6978 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shock.Wave.2.2020.720p.BluRay.x264-WiKi/Sample/Shock.Wave.2.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -1577,15 +832,7 @@ "title": "Shock Wave 2", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 92572651, - "modified_timestamp": "2021-06-04T11:54:33+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 66.458, - "bitrate_kbps": 11143 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/Sample/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.sample.mkv", @@ -1594,15 +841,7 @@ "title": "The First Gentleman", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54562993, - "modified_timestamp": "2022-03-03T10:27:29+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 78.887, - "bitrate_kbps": 5533 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.First.Gentleman.2021.720p.BluRay.x264-WiKi/The.First.Gentleman.2021.720p.BluRay.x264-WiKi.mkv", @@ -1611,15 +850,7 @@ "title": "The First Gentleman", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4690212034, - "modified_timestamp": "2022-03-03T10:27:34+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7290.624, - "bitrate_kbps": 5146 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Air.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -1628,15 +859,7 @@ "title": "Air", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8972432123, - "modified_timestamp": "2023-09-14T11:59:11+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 6699.488, - "bitrate_kbps": 10714 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/Sample/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -1645,15 +868,7 @@ "title": "One Summer Story", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57992313, - "modified_timestamp": "2022-04-14T04:22:21+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 59.107, - "bitrate_kbps": 7849 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi/One.Summer.Story.2020.720p.BluRay.x264.DTS-WiKi.mkv", @@ -1662,15 +877,7 @@ "title": "One Summer Story", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5877429852, - "modified_timestamp": "2022-04-14T04:27:55+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 8331.616, - "bitrate_kbps": 5643 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/Sample/The.Card.Counter.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -1679,15 +886,7 @@ "title": "The Card Counter", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 59816562, - "modified_timestamp": "2021-12-16T12:09:47+00:00", - "resolution": "1200x720", - "codec": "h264", - "duration_seconds": 60.585, - "bitrate_kbps": 7898 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Card.Counter.2021.720p.BluRay.x264-WiKi/The.Card.Counter.2021.720p.BluRay.x264-WiKi.mkv", @@ -1696,15 +895,7 @@ "title": "The Card Counter", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5870417715, - "modified_timestamp": "2021-12-16T12:14:28+00:00", - "resolution": "1200x720", - "codec": "h264", - "duration_seconds": 6689.632, - "bitrate_kbps": 7020 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.WEB-DL.AAC5.1.H.264-tG1R0.mkv", @@ -1713,15 +904,7 @@ "title": "Top Gun Maverick", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8003091219, - "modified_timestamp": "2022-08-17T12:16:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7814.571, - "bitrate_kbps": 8192 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi/Strays.2023.Unrated.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -1730,32 +913,16 @@ "title": "Strays", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6495249439, - "modified_timestamp": "2023-10-18T15:30:37+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 5586.581, - "bitrate_kbps": 9301 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv", "filename": "[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv", "category": "movie", - "title": "[蝙蝠侠:黑暗骑士][][]", + "title": "[4K HDR][蝙蝠侠:黑暗骑士][IMAX版][][][-]", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 12094063453, - "modified_timestamp": "2023-02-13T15:54:22+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 9132.256, - "bitrate_kbps": 10594 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -1764,15 +931,7 @@ "title": "The Mauritanian", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 128961095, - "modified_timestamp": "2021-05-04T14:00:59+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 60.144, - "bitrate_kbps": 17153 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi/The.Mauritanian.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1781,15 +940,7 @@ "title": "The Mauritanian", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14988584826, - "modified_timestamp": "2021-05-04T14:10:23+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 7783.861, - "bitrate_kbps": 15404 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Emilia.Perez.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Emilia.Perez.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -1798,15 +949,7 @@ "title": "Emilia Perez", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13215130604, - "modified_timestamp": "2024-12-31T11:23:59+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7923.008, - "bitrate_kbps": 13343 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi/Uncut.Gems.2019.REPACK.720p.BluRay.x264-WiKi.mkv", @@ -1815,15 +958,7 @@ "title": "Uncut Gems", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8688330638, - "modified_timestamp": "2020-03-15T06:06:19+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 8108.192, - "bitrate_kbps": 8572 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/F1.The.Movie.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/F1.The.Movie.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -1832,15 +967,7 @@ "title": "F1 The Movie", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 39199316150, - "modified_timestamp": "2025-09-30T01:00:08+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 9318.309, - "bitrate_kbps": 33653 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Sample/Spy.2015.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -1849,15 +976,7 @@ "title": "Spy", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 77243467, - "modified_timestamp": "2021-03-07T07:03:16+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 69.946, - "bitrate_kbps": 8834 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Spy.2015.720p.BluRay.x264.DTS-WiKi/Spy.2015.720p.BluRay.x264.DTS-WiKi.mkv", @@ -1866,15 +985,7 @@ "title": "Spy", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7050539072, - "modified_timestamp": "2021-03-07T07:03:54+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7822.955, - "bitrate_kbps": 7210 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.mkv", @@ -1883,15 +994,7 @@ "title": "Verdens Verste Menneske", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5868837048, - "modified_timestamp": "2022-05-31T10:27:56+00:00", - "resolution": "1280x690", - "codec": "h264", - "duration_seconds": 7667.264, - "bitrate_kbps": 6123 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi/Sample/Verdens.Verste.Menneske.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -1900,15 +1003,7 @@ "title": "Verdens Verste Menneske", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 49140808, - "modified_timestamp": "2022-05-31T10:18:33+00:00", - "resolution": "1280x690", - "codec": "h264", - "duration_seconds": 65.085, - "bitrate_kbps": 6040 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -1917,15 +1012,7 @@ "title": "Yowamushi Pedal", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110642991, - "modified_timestamp": "2021-03-23T00:14:09+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.101, - "bitrate_kbps": 14486 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi/Yowamushi.Pedal.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1934,15 +1021,7 @@ "title": "Yowamushi Pedal", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10471019306, - "modified_timestamp": "2021-03-23T00:19:42+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6749.92, - "bitrate_kbps": 12410 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sample/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -1951,15 +1030,7 @@ "title": "Sex Is Zero", "year": 2002, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105009101, - "modified_timestamp": "2023-12-02T14:51:15+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 63.213, - "bitrate_kbps": 13289 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi/Sex.Is.Zero.2002.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -1968,15 +1039,7 @@ "title": "Sex Is Zero", "year": 2002, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10732117107, - "modified_timestamp": "2023-12-02T14:52:45+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 5790.959, - "bitrate_kbps": 14826 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -1985,15 +1048,7 @@ "title": "Hayabusa", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 107361078, - "modified_timestamp": "2020-09-30T12:23:22+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 66.07, - "bitrate_kbps": 12999 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi/Hayabusa.2011.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2002,15 +1057,7 @@ "title": "Hayabusa", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12885200257, - "modified_timestamp": "2020-09-30T12:31:30+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 8402.394, - "bitrate_kbps": 12268 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Night.in.Paradise.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", @@ -2019,15 +1066,7 @@ "title": "Night in Paradise", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11381737474, - "modified_timestamp": "2021-04-17T03:47:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7922.336, - "bitrate_kbps": 11493 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -2036,15 +1075,7 @@ "title": "Top Gun Maverick", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 162120136, - "modified_timestamp": "2022-10-17T11:15:42+00:00", - "resolution": "1920x1010", - "codec": "hevc", - "duration_seconds": 61.58, - "bitrate_kbps": 21061 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi/Top.Gun.Maverick.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -2053,15 +1084,7 @@ "title": "Top Gun Maverick", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8042705459, - "modified_timestamp": "2022-10-17T11:15:46+00:00", - "resolution": "1920x1010", - "codec": "hevc", - "duration_seconds": 7814.528, - "bitrate_kbps": 8233 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -2070,15 +1093,7 @@ "title": "The Hating Game", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 129812694, - "modified_timestamp": "2022-02-16T14:11:57+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 63.69, - "bitrate_kbps": 16305 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi/The.Hating.Game.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2087,15 +1102,7 @@ "title": "The Hating Game", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11968553638, - "modified_timestamp": "2022-02-16T14:11:59+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6151.396, - "bitrate_kbps": 15565 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ghostbusters.Frozen.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Ghostbusters.Frozen.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -2104,15 +1111,7 @@ "title": "Ghostbusters Frozen Empire", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11128479029, - "modified_timestamp": "2024-06-23T08:45:16+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6906.108, - "bitrate_kbps": 12891 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/超时空亚当计划.The.Adam.Project.2022.1080p.WEB-DL.H264.AC3-HDHWEB/超時空亞當計畫.mkv", @@ -2121,15 +1120,7 @@ "title": "超時空亞當計畫", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 14730636104, - "modified_timestamp": "2022-11-16T15:41:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6397.088, - "bitrate_kbps": 18421 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -2138,15 +1129,7 @@ "title": "The Hound of the Baskervilles Sherlock the Movie", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 52759173, - "modified_timestamp": "2022-11-14T14:52:04+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 101.027, - "bitrate_kbps": 4177 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Hound.of.the.Baskervilles.Sherlock.the.Movie.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -2155,15 +1138,7 @@ "title": "The Hound of the Baskervilles Sherlock the Movie", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5869243237, - "modified_timestamp": "2022-11-14T14:55:19+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 7134.048, - "bitrate_kbps": 6581 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Sample/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.Sample.mkv", @@ -2172,15 +1147,7 @@ "title": "Lock Stock and Two Smoking Barrels", "year": 1998, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 91394153, - "modified_timestamp": "2023-03-01T13:34:50+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 61.827, - "bitrate_kbps": 11825 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi/Lock.Stock.and.Two.Smoking.Barrels.1998.BluRay.1080p.x264.DTS-WiKi.mkv", @@ -2189,15 +1156,7 @@ "title": "Lock Stock and Two Smoking Barrels", "year": 1998, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9382056738, - "modified_timestamp": "2023-03-01T13:46:56+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6443.307, - "bitrate_kbps": 11648 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Raging Fire 2021 WEB-DL 4K H265 DDP 5.1-Dave.mkv", @@ -2206,15 +1165,7 @@ "title": "Raging Fire", "year": 2021, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 6594579273, - "modified_timestamp": "2021-10-02T03:39:49+00:00", - "resolution": "3840x1626", - "codec": "hevc", - "duration_seconds": 7709.4, - "bitrate_kbps": 6843 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Ministry.of.Ungentlemanly.Warfare.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Ministry.of.Ungentlemanly.Warfare.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -2223,15 +1174,7 @@ "title": "The Ministry of Ungentlemanly Warfare", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11168051738, - "modified_timestamp": "2024-06-19T11:12:32+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 7221.28, - "bitrate_kbps": 12372 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Next.Sohee.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -2240,15 +1183,7 @@ "title": "Next Sohee", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9539896694, - "modified_timestamp": "2023-12-21T11:15:13+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 8260.32, - "bitrate_kbps": 9239 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/American.Beauty.1999.BluRay.1080p.DTS-HDMA.5.1.x265.10bit-CHD/American.Beauty.1999.BluRay.1080p.DTS-HDMA.5.1.x265.10bit-CHD.mkv", @@ -2257,15 +1192,7 @@ "title": "American Beauty", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6591756516, - "modified_timestamp": "2025-04-23T11:26:16+00:00", - "resolution": "1920x818", - "codec": "hevc", - "duration_seconds": 7299.968, - "bitrate_kbps": 7223 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Thunderbolts.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -2274,15 +1201,7 @@ "title": "Thunderbolts", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11565842303, - "modified_timestamp": "2025-07-27T09:39:41+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7609.984, - "bitrate_kbps": 12158 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/灿烂人生.The.Best.of.Youth.2003.Blu-ray.1080p.x265.10bit.DD5.1.MNHD-FRDS/The.Best.of.Youth.2003.Blu-ray.1080p.DISC2.x265.10bit.DD5.1.MNHD-FRDS.mkv", @@ -2291,15 +1210,7 @@ "title": "The Best of Youth", "year": 2003, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9631633674, - "modified_timestamp": "2021-05-06T12:07:19+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 10699.6, - "bitrate_kbps": 7201 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/灿烂人生.The.Best.of.Youth.2003.Blu-ray.1080p.x265.10bit.DD5.1.MNHD-FRDS/The.Best.of.Youth.2003.Blu-ray.1080p.DISC1.x265.10bit.DD5.1.MNHD-FRDS.mkv", @@ -2308,15 +1219,7 @@ "title": "The Best of Youth", "year": 2003, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10143452967, - "modified_timestamp": "2021-05-06T12:07:13+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 10804.128, - "bitrate_kbps": 7510 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/超人:钢铁之躯.Man.of.Steel.2013.BluRay.2160p.x265.10bit.HDR.4Audio.mUHD-FRDS/Man.of.Steel.2013.BluRay.2160p.x265.10bit.HDR.4Audio.mUHD-FRDS.mkv", @@ -2325,15 +1228,7 @@ "title": "Man of Steel", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 42875322024, - "modified_timestamp": "2021-03-28T05:56:17+00:00", - "resolution": "3840x1600", - "codec": "hevc", - "duration_seconds": 8581.656, - "bitrate_kbps": 39969 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Sample/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -2342,15 +1237,7 @@ "title": "Under The Tuscan Sun", "year": 2003, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 103490436, - "modified_timestamp": "2025-02-18T08:59:27+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 34.079, - "bitrate_kbps": 24294 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi/Under.The.Tuscan.Sun.2003.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2359,15 +1246,7 @@ "title": "Under The Tuscan Sun", "year": 2003, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 22380341619, - "modified_timestamp": "2025-02-18T08:59:37+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6761.387, - "bitrate_kbps": 26480 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -2376,15 +1255,7 @@ "title": "Weathering with You", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 119689177, - "modified_timestamp": "2020-11-06T12:46:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 61.812, - "bitrate_kbps": 15490 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2393,15 +1264,7 @@ "title": "Weathering with You", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10566286780, - "modified_timestamp": "2020-11-06T13:01:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6733.739, - "bitrate_kbps": 12553 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Daddio.2023.2160p.AMZN.WEB-DL.DDP5.1.H.265-FLUX.mkv", @@ -2410,15 +1273,7 @@ "title": "Daddio", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11389665537, - "modified_timestamp": "2024-08-13T10:08:20+00:00", - "resolution": "3840x1600", - "codec": "hevc", - "duration_seconds": 5983.853, - "bitrate_kbps": 15227 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi/As.It.Burns.2023.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -2427,15 +1282,7 @@ "title": "As It Burns", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7043504733, - "modified_timestamp": "2024-10-02T02:13:58+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6126.976, - "bitrate_kbps": 9196 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wolfs.2024.2160p.ATVP.WEB-DL.DDP5.1.Atmos.DV.H.265-FLUX.mkv", @@ -2444,15 +1291,7 @@ "title": "Wolfs", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 20333793837, - "modified_timestamp": "2024-10-01T01:47:52+00:00", - "resolution": "3840x1606", - "codec": "hevc", - "duration_seconds": 6428.506, - "bitrate_kbps": 25304 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/头脑特工队.Inside.Out.2015.BluRay.2160p.x265.10bit.HDR.5Audio.mUHD-FRDS/Inside.Out.2015.BluRay.2160p.x265.10bit.HDR.5Audio.mUHD-FRDS.mkv", @@ -2461,15 +1300,7 @@ "title": "Inside Out", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 16702005852, - "modified_timestamp": "2024-06-27T12:50:34+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 5688.79, - "bitrate_kbps": 23487 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Sample/Airport.2013.1080p.BluRay.x264-WiKi.sample.mkv", @@ -2478,15 +1309,7 @@ "title": "Airport", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110888585, - "modified_timestamp": "2020-12-17T13:31:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 85.223, - "bitrate_kbps": 10409 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Airport.2013.1080p.BluRay.x264-WiKi/Airport.2013.1080p.BluRay.x264-WiKi.mkv", @@ -2495,15 +1318,7 @@ "title": "Airport", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7841498185, - "modified_timestamp": "2020-12-17T13:41:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6007.584, - "bitrate_kbps": 10442 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/阿甘正传.Forrest.Gump.1994.Bluray.2160p.x265.10bit.HDR.5Audios.mUHD-FRDS/Forrest.Gump.1994.Bluray.2160p.x265.10bit.HDR.5Audios.mUHD-FRDS.mkv", @@ -2512,15 +1327,7 @@ "title": "Forrest Gump", "year": 1994, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 24303672100, - "modified_timestamp": "2024-09-07T09:44:43+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 8529.408, - "bitrate_kbps": 22795 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Sample/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.Sample.mkv", @@ -2529,15 +1336,7 @@ "title": "Lady Chatterley's Lover", "year": 1981, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 96666242, - "modified_timestamp": "2022-03-12T16:17:23+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 66.456, - "bitrate_kbps": 11636 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi/Lady.Chatterley's.Lover.1981.720p.BluRay.x264-WiKi.mkv", @@ -2546,15 +1345,7 @@ "title": "Lady Chatterley's Lover", "year": 1981, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8890392776, - "modified_timestamp": "2022-03-12T16:34:48+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6259.04, - "bitrate_kbps": 11363 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Past.Lives.2023.REPACK.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -2563,15 +1354,7 @@ "title": "Past Lives", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7970083182, - "modified_timestamp": "2023-08-30T14:50:30+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6343.588, - "bitrate_kbps": 10051 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Killer.2023.1080p.NF.WEB-DL.DDP5.1.H.264-playWEB.mkv", @@ -2580,15 +1363,7 @@ "title": "The Killer", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4989962218, - "modified_timestamp": "2023-11-11T08:45:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7170.792, - "bitrate_kbps": 5566 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Sample/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.Sample.mkv", @@ -2597,15 +1372,7 @@ "title": "Big Shot's Funeral", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 63938378, - "modified_timestamp": "2020-03-03T12:01:00+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 63.928, - "bitrate_kbps": 8001 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi/Big.Shot's.Funeral.2001.720p.BluRay.x264-WiKi.mkv", @@ -2614,15 +1381,7 @@ "title": "Big Shot's Funeral", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6065097460, - "modified_timestamp": "2020-03-03T12:11:00+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6421.6, - "bitrate_kbps": 7555 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Rurouni.Kenshin.the.Beginning.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", @@ -2631,15 +1390,7 @@ "title": "Rurouni Kenshin the Beginning", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9807843710, - "modified_timestamp": "2021-08-03T15:07:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8290.976, - "bitrate_kbps": 9463 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Personal.Taulor.2013.1080p.WEB-DL.x264.AAC-SmY.mkv", @@ -2648,15 +1399,7 @@ "title": "Personal Taulor", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3426566352, - "modified_timestamp": "2021-02-17T03:40:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7090.209, - "bitrate_kbps": 3866 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/見えない目撃者 2019 [R15+指定] 1080p HDTV x264 AAC5.1-DoA.mkv", @@ -2665,15 +1408,7 @@ "title": "見えない目撃者", "year": 2019, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 6128098729, - "modified_timestamp": "2022-07-17T15:49:04+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7680.924, - "bitrate_kbps": 6382 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Sample/Freaky.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -2682,15 +1417,7 @@ "title": "Freaky", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 49013624, - "modified_timestamp": "2021-04-13T03:41:26+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 62.828, - "bitrate_kbps": 6240 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Freaky.2020.720p.BluRay.x264-WiKi/Freaky.2020.720p.BluRay.x264-WiKi.mkv", @@ -2699,15 +1426,7 @@ "title": "Freaky", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4694290892, - "modified_timestamp": "2021-04-13T03:44:20+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6123.968, - "bitrate_kbps": 6132 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Black.Widow.2021.1080p.DSNP.WEB-DL.DDP.5.1.Atmos.H.265-FLUX.mkv", @@ -2716,15 +1435,7 @@ "title": "Black Widow", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7287857360, - "modified_timestamp": "2021-07-12T14:03:42+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 8026.784, - "bitrate_kbps": 7263 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -2733,15 +1444,7 @@ "title": "The Father", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 144583655, - "modified_timestamp": "2021-05-18T09:04:56+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 60.686, - "bitrate_kbps": 19059 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Father.2020.1080p.BluRay.x264.DTS-WiKi/The.Father.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2750,15 +1453,7 @@ "title": "The Father", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9733764179, - "modified_timestamp": "2021-05-18T09:05:09+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5819.819, - "bitrate_kbps": 13380 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/No.Longer.Human.2019.720p.BluRay.x264-WiKi.mkv", @@ -2767,15 +1462,7 @@ "title": "No Longer Human", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5369647590, - "modified_timestamp": "2020-05-31T02:11:33+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 7240.256, - "bitrate_kbps": 5933 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/No.Longer.Human.2019.720p.BluRay.x264-WiKi/Sample/No.Longer.Human.2019.720p.BluRay.x264-WiKi.sample.mkv", @@ -2784,15 +1471,7 @@ "title": "No Longer Human", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57035281, - "modified_timestamp": "2020-05-31T02:11:27+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 79.217, - "bitrate_kbps": 5759 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Napoleon.The.Directors.Cut.2024.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -2801,15 +1480,7 @@ "title": "Napoleon The Directors Cut", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 16170654585, - "modified_timestamp": "2024-12-17T10:08:57+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 12288.64, - "bitrate_kbps": 10527 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Sample/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -2818,15 +1489,7 @@ "title": "Assassination", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 88348769, - "modified_timestamp": "2020-09-02T06:17:09+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.841, - "bitrate_kbps": 11429 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Assassination.2015.1080p.BluRay.x264.DTS-WiKi/Assassination.2015.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -2835,15 +1498,7 @@ "title": "Assassination", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15019191591, - "modified_timestamp": "2020-09-02T06:17:21+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 8403.008, - "bitrate_kbps": 14298 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH/Greenland.2020.1080p.BluRay.x265.10bit.DTS-PTH.mkv", @@ -2852,15 +1507,7 @@ "title": "Greenland", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5556298809, - "modified_timestamp": "2020-12-22T10:34:47+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7168.453, - "bitrate_kbps": 6200 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Family.Plan.2.2025.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -2869,15 +1516,7 @@ "title": "The Family Plan 2", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8431200469, - "modified_timestamp": "2026-01-22T07:45:10+00:00", - "resolution": "1918x802", - "codec": "h264", - "duration_seconds": 6369.53, - "bitrate_kbps": 10589 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG/Top.Gun.Maverick.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", @@ -2886,15 +1525,7 @@ "title": "Top Gun Maverick", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 24595863921, - "modified_timestamp": "2022-08-23T01:45:51+00:00", - "resolution": "3840x2024", - "codec": "hevc", - "duration_seconds": 7814.598, - "bitrate_kbps": 25179 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi/Juror.#2.2024.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -2903,15 +1534,7 @@ "title": "Juror #2", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4552852483, - "modified_timestamp": "2025-02-06T10:21:16+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6830.88, - "bitrate_kbps": 5332 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.mkv", @@ -2920,15 +1543,7 @@ "title": "Basic Instinct Director's Cut", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7024337107, - "modified_timestamp": "2020-04-27T16:52:44+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 7695.403, - "bitrate_kbps": 7302 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi/Sample/Basic.Instinct.Director's.Cut.1992.BluRay.720p.x264.DTS-WiKi.Sample.mkv", @@ -2937,15 +1552,7 @@ "title": "Basic Instinct Director's Cut", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 109260376, - "modified_timestamp": "2020-04-27T16:42:29+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 125.959, - "bitrate_kbps": 6939 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP 1080p HDTV x264 AAC.mkv", @@ -2954,15 +1561,7 @@ "title": "脚本バカリズムの新春スペシャルドラマ「侵入者たちの晩餐」 SP", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3551617238, - "modified_timestamp": "2025-02-22T01:14:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5509.248, - "bitrate_kbps": 5157 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.mkv", @@ -2971,15 +1570,7 @@ "title": "Raya and the Last Dragon", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6342393324, - "modified_timestamp": "2021-08-24T09:38:23+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6449.248, - "bitrate_kbps": 7867 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi/Sample/Raya.and.the.Last.Dragon.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -2988,15 +1579,7 @@ "title": "Raya and the Last Dragon", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 94307990, - "modified_timestamp": "2021-08-24T09:36:39+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 60.034, - "bitrate_kbps": 12567 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Violent.Night.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3005,15 +1588,7 @@ "title": "Violent Night", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7038267699, - "modified_timestamp": "2023-02-12T04:57:41+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6691.904, - "bitrate_kbps": 8414 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dune.Part.Two.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Dune.Part.Two.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -3022,15 +1597,7 @@ "title": "Dune Part Two", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13859462436, - "modified_timestamp": "2024-05-08T15:56:24+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 9948.96, - "bitrate_kbps": 11144 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/Sample/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -3039,15 +1606,7 @@ "title": "I Wish", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 80826382, - "modified_timestamp": "2022-09-08T11:41:42+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 61.786, - "bitrate_kbps": 10465 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi/I.Wish.2011.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -3056,15 +1615,7 @@ "title": "I Wish", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10201644814, - "modified_timestamp": "2022-09-08T11:41:50+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 7727.744, - "bitrate_kbps": 10561 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Evangelion.3.0+1.01.Thrice.Upon.a.Time.2021.Amazon.WEB-DL.1080p.H264.DDP-AREY.mkv", @@ -3073,15 +1624,7 @@ "title": "Evangelion 3 0+1 01 Thrice Upon a Time", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7694653471, - "modified_timestamp": "2021-08-13T10:58:37+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 9346.112, - "bitrate_kbps": 6586 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Shadow's.Edge.2025.1080p.BluRay.x265.10bit.DTS-WiKi/The.Shadow's.Edge.2025.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3090,15 +1633,7 @@ "title": "The Shadow's Edge", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10111318868, - "modified_timestamp": "2026-02-01T11:19:40+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8531.905, - "bitrate_kbps": 9480 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/搏击俱乐部.Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Fight.Club.1999.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -3107,15 +1642,7 @@ "title": "Fight Club", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8185180634, - "modified_timestamp": "2023-10-22T06:23:46+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8348.384, - "bitrate_kbps": 7843 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/BDMenu.mkv", @@ -3124,15 +1651,7 @@ "title": "BDMenu", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 22475141, - "modified_timestamp": "2023-01-27T02:28:23+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 60.074, - "bitrate_kbps": 2992 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/特送.Special.Delivery.2022.BluRay.MNHD-FRDS/Special.Delivery.2022.BluRay.1080p.x265.10bit.DDP5.1.MNHD-FRDS.mkv", @@ -3141,15 +1660,7 @@ "title": "Special Delivery", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8201280772, - "modified_timestamp": "2023-01-27T02:43:08+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6530.208, - "bitrate_kbps": 10047 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/July.Rhapsody.2002.720p.BluRay.DD5.1.x264.Dual.Audio-BMDru/July.Rhapsody.2002.720p.BluRay.DD5.1.x264.Dual.Audio-BMDru.mkv", @@ -3158,15 +1669,7 @@ "title": "July Rhapsody", "year": 2002, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4065588774, - "modified_timestamp": "2022-02-26T10:32:29+00:00", - "resolution": "1280x676", - "codec": "h264", - "duration_seconds": 6182.432, - "bitrate_kbps": 5260 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -3175,15 +1678,7 @@ "title": "Howl's Moving Castle", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 90785042, - "modified_timestamp": "2021-04-21T12:20:14+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 60.415, - "bitrate_kbps": 12021 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi/Howl's.Moving.Castle.2004.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3192,15 +1687,7 @@ "title": "Howl's Moving Castle", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10390833778, - "modified_timestamp": "2021-04-21T12:22:57+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7149.142, - "bitrate_kbps": 11627 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Real.Pain.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -3209,15 +1696,7 @@ "title": "A Real Pain", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6560359561, - "modified_timestamp": "2025-01-09T04:52:57+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 5387.459, - "bitrate_kbps": 9741 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/法式火锅.The.Taste.of.Things.2023.1080p.BluRay.x265.10bit.DDP5.1.MNHD-FRDS/法式火锅.The.Taste.of.Things.2023.1080p.BluRay.x265.10bit.DDP5.1.MNHD-FRDS.mkv", @@ -3226,15 +1705,7 @@ "title": "法式火锅 The Taste of Things", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6951499165, - "modified_timestamp": "2025-11-04T10:20:26+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 8106.496, - "bitrate_kbps": 6860 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3243,15 +1714,7 @@ "title": "Berserk The Golden Age Arc The Egg of the King", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7007750103, - "modified_timestamp": "2021-05-20T04:58:25+00:00", - "resolution": "1920x812", - "codec": "h264", - "duration_seconds": 4628.342, - "bitrate_kbps": 12112 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.The.Egg.of.the.King.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -3260,15 +1723,7 @@ "title": "Berserk The Golden Age Arc The Egg of the King", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 95915377, - "modified_timestamp": "2021-05-20T04:42:00+00:00", - "resolution": "1920x812", - "codec": "h264", - "duration_seconds": 64.148, - "bitrate_kbps": 11961 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Remember.2022.1080p.SEEZN.WEB-DL.AAC2.0.H.264-tG1R0.mkv", @@ -3277,15 +1732,7 @@ "title": "Remember", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7832366799, - "modified_timestamp": "2022-12-20T10:43:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7707.7, - "bitrate_kbps": 8129 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -3294,15 +1741,7 @@ "title": "Where the Crawdads Sing", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 68841039, - "modified_timestamp": "2022-09-16T07:02:19+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 61.895, - "bitrate_kbps": 8897 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Where.the.Crawdads.Sing.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3311,15 +1750,7 @@ "title": "Where the Crawdads Sing", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8416209367, - "modified_timestamp": "2022-09-16T07:02:21+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 7525.526, - "bitrate_kbps": 8946 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/Sample/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.sample.mkv", @@ -3328,15 +1759,7 @@ "title": "A Loving Husband", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 117707434, - "modified_timestamp": "2024-08-16T00:18:32+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 56.736, - "bitrate_kbps": 16597 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi/A.Loving.Husband.2016.1080p.BluRay.x264-WiKi.mkv", @@ -3345,15 +1768,7 @@ "title": "A Loving Husband", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10472739681, - "modified_timestamp": "2024-08-16T00:33:21+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 7018.011, - "bitrate_kbps": 11938 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/Sample/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.sample.mkv", @@ -3362,15 +1777,7 @@ "title": "And the Baton Was Passed", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110435218, - "modified_timestamp": "2022-04-12T04:39:51+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 65.692, - "bitrate_kbps": 13448 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi/And.the.Baton.Was.Passed.2021.1080p.BluRay.x264-WiKi.mkv", @@ -3379,15 +1786,7 @@ "title": "And the Baton Was Passed", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11804430668, - "modified_timestamp": "2022-04-12T04:44:33+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 8221.28, - "bitrate_kbps": 11486 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Policeman's.Lineage.2022.1080p.WEB-DL.DDP5.1.H264-HAMR.mkv", @@ -3396,15 +1795,7 @@ "title": "The Policeman's Lineage", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7462680445, - "modified_timestamp": "2022-06-28T11:09:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7175.008, - "bitrate_kbps": 8320 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/Sample/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -3413,15 +1804,7 @@ "title": "The Voice of Sin", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57643335, - "modified_timestamp": "2021-05-04T13:55:42+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 67.628, - "bitrate_kbps": 6818 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi/The.Voice.of.Sin.2020.720p.BluRay.x264-WiKi.mkv", @@ -3430,15 +1813,7 @@ "title": "The Voice of Sin", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5854871940, - "modified_timestamp": "2021-05-04T14:02:44+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 8474.784, - "bitrate_kbps": 5526 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Totto.Chan.The.Little.Girl.at.the.Window.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Totto.Chan.The.Little.Girl.at.the.Window.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3447,15 +1822,7 @@ "title": "Totto Chan The Little Girl at the Window", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7791184965, - "modified_timestamp": "2024-08-19T13:16:30+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6830.827, - "bitrate_kbps": 9124 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Sample/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.sample.mkv", @@ -3464,15 +1831,7 @@ "title": "Tazza The Hidden Card", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 59150644, - "modified_timestamp": "2020-04-11T10:27:52+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 65.92, - "bitrate_kbps": 7178 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi/Tazza.The.Hidden.Card.2014.720p.BluRay.x264-WiKi.mkv", @@ -3481,15 +1840,7 @@ "title": "Tazza The Hidden Card", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7045700149, - "modified_timestamp": "2020-04-11T10:28:40+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 8821.536, - "bitrate_kbps": 6389 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Companion.2025.2160p.iT.WEB-DL.HDR.H.265.DDP5.1.Atmos-Nest@ADWeb/Companion.2025.2160p.iT.WEB-DL.HDR.H.265.DDP5.1.Atmos-Nest@ADWeb.mkv", @@ -3498,15 +1849,7 @@ "title": "Companion", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 18374738823, - "modified_timestamp": "2025-03-01T15:41:33+00:00", - "resolution": "3840x1604", - "codec": "hevc", - "duration_seconds": 5824.86, - "bitrate_kbps": 25236 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -3515,15 +1858,7 @@ "title": "Baragaki Unbroken Samurai", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 67295429, - "modified_timestamp": "2022-10-17T13:10:10+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 26.777, - "bitrate_kbps": 20105 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Baragaki.Unbroken.Samurai.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3532,15 +1867,7 @@ "title": "Baragaki Unbroken Samurai", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7519578315, - "modified_timestamp": "2022-10-17T13:17:31+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8883.552, - "bitrate_kbps": 6771 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/An.Abandoned.Team.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/An.Abandoned.Team.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -3549,15 +1876,7 @@ "title": "An Abandoned Team", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9074147216, - "modified_timestamp": "2025-02-16T13:56:30+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6413.856, - "bitrate_kbps": 11318 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi/The.Last.Dance.2024.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -3566,15 +1885,7 @@ "title": "The Last Dance", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8536647451, - "modified_timestamp": "2025-04-21T11:34:55+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7582.272, - "bitrate_kbps": 9006 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiK.sample.mkv", @@ -3583,15 +1894,7 @@ "title": "Be My Master", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 114751761, - "modified_timestamp": "2024-06-18T13:39:34+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 65.697, - "bitrate_kbps": 13973 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi/Be.My.Master.2018.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3600,15 +1903,7 @@ "title": "Be My Master", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9128354188, - "modified_timestamp": "2024-06-18T13:40:41+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6167.168, - "bitrate_kbps": 11841 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3617,15 +1912,7 @@ "title": "Serendipity", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10729825240, - "modified_timestamp": "2024-08-20T08:55:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5458.537, - "bitrate_kbps": 15725 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi/Sample/Serendipity.2001.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -3634,15 +1921,7 @@ "title": "Serendipity", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 108150448, - "modified_timestamp": "2024-08-20T08:51:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 55.084, - "bitrate_kbps": 15706 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Witcher.Sirens.of.the.Deep.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -3651,15 +1930,7 @@ "title": "The Witcher Sirens of the Deep", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3917916790, - "modified_timestamp": "2025-02-16T14:43:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5517.459, - "bitrate_kbps": 5680 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Maharaja.2024.1080p.NF.WEB-DL.DDP5.1.x265.10bit-Yumi@FRDS.mkv", @@ -3668,15 +1939,7 @@ "title": "Maharaja", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2407310038, - "modified_timestamp": "2024-12-02T12:25:41+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 8455.616, - "bitrate_kbps": 2277 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Predator.Badlands.2025.1080p.WEB-DL.LINE.AUDIO.H264-AOC.mkv", @@ -3685,15 +1948,7 @@ "title": "Predator Badlands", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6254468694, - "modified_timestamp": "2025-12-26T13:57:56+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6440.75, - "bitrate_kbps": 7768 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Renfield.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3702,15 +1957,7 @@ "title": "Renfield", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6735504415, - "modified_timestamp": "2023-12-22T13:56:14+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5614.666, - "bitrate_kbps": 9597 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Yin.Yang.Master.Zero.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Yin.Yang.Master.Zero.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3719,15 +1966,7 @@ "title": "The Yin Yang Master Zero", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862744115, - "modified_timestamp": "2024-10-10T11:29:40+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6773.355, - "bitrate_kbps": 6924 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -3736,15 +1975,7 @@ "title": "Thermae Romae", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 56567007, - "modified_timestamp": "2025-03-26T15:37:06+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 67.033, - "bitrate_kbps": 6750 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.2012.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3753,15 +1984,7 @@ "title": "Thermae Romae", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8543214480, - "modified_timestamp": "2025-03-26T15:37:18+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 6498.038, - "bitrate_kbps": 10517 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Protege.2021.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai/The.Protege.2021.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv", @@ -3770,15 +1993,7 @@ "title": "The Protege", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5767662301, - "modified_timestamp": "2021-10-19T04:49:53+00:00", - "resolution": "1920x802", - "codec": "hevc", - "duration_seconds": 6552.555, - "bitrate_kbps": 7041 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Nuremberg 2025 1080p x265 10bit DTS-HD MA 5.1-alrmothi/Nuremberg 2025 1080p x265 10bit DTS-HD MA 5.1-alrmothi.mkv", @@ -3787,32 +2002,16 @@ "title": "Nuremberg", "year": 2025, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 11218247863, - "modified_timestamp": "2026-02-11T11:18:27+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8920.129, - "bitrate_kbps": 10061 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4", "filename": "Kimetsu no Yaiba - Mugen Ressha [PSNRip][1080p][CHT][v2].mp4", "category": "movie", - "title": "Kimetsu no Yaiba - Mugen Ressha []", + "title": "Kimetsu no Yaiba - Mugen Ressha [PSNRip][][CHT]", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3820153023, - "modified_timestamp": "2021-05-10T12:01:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7011.626667, - "bitrate_kbps": 4358 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi/A.Real.Job.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -3821,15 +2020,7 @@ "title": "A Real Job", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8880094726, - "modified_timestamp": "2025-08-27T12:38:54+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6040.0, - "bitrate_kbps": 11761 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/天下无贼.A.World.Without.Thieves.2004.2160p.WEB-DL.H264.AAC-LeagueWEB/A.World.Without.Thieves.2004.2160p.WEB-DL.H264.AAC-LeagueWEB.mp4", @@ -3838,15 +2029,7 @@ "title": "A World Without Thieves", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8677217653, - "modified_timestamp": "2023-01-27T13:04:41+00:00", - "resolution": "3840x2160", - "codec": "h264", - "duration_seconds": 7248.235079, - "bitrate_kbps": 9577 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi/Dream.Scenario.2023.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -3855,15 +2038,7 @@ "title": "Dream Scenario", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5871116364, - "modified_timestamp": "2024-03-02T03:13:20+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 6119.424, - "bitrate_kbps": 7675 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -3872,15 +2047,7 @@ "title": "Summer Sway", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 123712377, - "modified_timestamp": "2022-05-06T11:41:11+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.584, - "bitrate_kbps": 16070 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi/Summer.Sway.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -3889,15 +2056,7 @@ "title": "Summer Sway", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10972960624, - "modified_timestamp": "2022-05-06T11:41:18+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5425.375, - "bitrate_kbps": 16180 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/战争与和平.War.and.Peace.1966.CC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/War.and.Peace.1966.Part.III.The.Year.1812.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -3906,15 +2065,7 @@ "title": "War and Peace", "year": 1966, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6911448790, - "modified_timestamp": "2024-06-23T12:06:01+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 4901.92, - "bitrate_kbps": 11279 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/战争与和平.War.and.Peace.1966.CC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/War.and.Peace.1966.Part.II.Natasha.Rostova.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -3923,15 +2074,7 @@ "title": "War and Peace", "year": 1966, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5850749966, - "modified_timestamp": "2024-06-23T12:05:55+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 5882.912, - "bitrate_kbps": 7956 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/战争与和平.War.and.Peace.1966.CC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/War.and.Peace.1966.Part.IV.Pierre.Bezukhov.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -3940,15 +2083,7 @@ "title": "War and Peace", "year": 1966, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6414722552, - "modified_timestamp": "2024-06-23T12:05:58+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 5798.496, - "bitrate_kbps": 8850 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/战争与和平.War.and.Peace.1966.CC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/War.and.Peace.1966.Part.I.Andrei.Bolkonsky.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -3957,15 +2092,7 @@ "title": "War and Peace", "year": 1966, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10054826553, - "modified_timestamp": "2024-06-23T12:06:03+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 8827.776, - "bitrate_kbps": 9111 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/飞机陷落.2023.1080p.中英字幕£CMCT春天/[飞机陷落].Plane.2023.BluRay.1080p.x264.AC3-CMCT.mkv", @@ -3974,15 +2101,7 @@ "title": "Plane", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7719765198, - "modified_timestamp": "2023-07-13T10:27:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6449.504, - "bitrate_kbps": 9575 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Finch.2021.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-TEPES.mkv", @@ -3991,15 +2110,7 @@ "title": "Finch", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9400115689, - "modified_timestamp": "2021-11-05T13:08:12+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6939.648, - "bitrate_kbps": 10836 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Encanto.2021.720p.BluRay.x264-WiKi.mkv", @@ -4008,15 +2119,7 @@ "title": "Encanto", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5829516835, - "modified_timestamp": "2022-01-22T13:12:54+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 6127.072, - "bitrate_kbps": 7611 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Encanto.2021.720p.BluRay.x264-WiKi/Sample/Encanto.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4025,15 +2128,7 @@ "title": "Encanto", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 64553560, - "modified_timestamp": "2022-01-22T13:07:03+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 61.298, - "bitrate_kbps": 8424 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Demon Slayer Kimetsu No Yaiba Infinity Castle 2025 1080p WEB-DL JAPANESE AAC2.0 H.264-Cassu.mkv", @@ -4042,15 +2137,7 @@ "title": "Demon Slayer Kimetsu No Yaiba Infinity Castle", "year": 2025, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 3251888190, - "modified_timestamp": "2026-01-14T14:00:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 9301.821, - "bitrate_kbps": 2796 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Black.Panther.Wakanda.Forever.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Black.Panther.Wakanda.Forever.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4059,15 +2146,7 @@ "title": "Black Panther Wakanda Forever", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9095091875, - "modified_timestamp": "2023-02-07T12:46:01+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 9678.677, - "bitrate_kbps": 7517 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Sample/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4076,15 +2155,7 @@ "title": "Poupelle of Chimney Town", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 58084159, - "modified_timestamp": "2022-03-06T11:47:09+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 64.781, - "bitrate_kbps": 7172 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi/Poupelle.of.Chimney.Town.2020.720p.BluRay.x264-WiKi.mkv", @@ -4093,15 +2164,7 @@ "title": "Poupelle of Chimney Town", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5087373710, - "modified_timestamp": "2022-03-06T12:38:25+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 6020.032, - "bitrate_kbps": 6760 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4110,15 +2173,7 @@ "title": "Tenet", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15432098080, - "modified_timestamp": "2020-12-08T06:27:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 9009.056, - "bitrate_kbps": 13703 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi/Sample/Tenet.2020.IMAX.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4127,15 +2182,7 @@ "title": "Tenet", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 93645207, - "modified_timestamp": "2020-12-08T06:16:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 61.618, - "bitrate_kbps": 12158 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Sample/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -4144,15 +2191,7 @@ "title": "Under the Open Sky", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 52454045, - "modified_timestamp": "2021-10-28T12:08:11+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 44.809, - "bitrate_kbps": 9364 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi/Under.the.Open.Sky.2020.720p.BluRay.x264-WiKi.mkv", @@ -4161,15 +2200,7 @@ "title": "Under the Open Sky", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7044293186, - "modified_timestamp": "2021-10-28T12:08:49+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 7599.616, - "bitrate_kbps": 7415 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Running.Man.2025.1080p.AMZN.WEB-DL.English.DDP5.1.H.264-KyoGo.mkv", @@ -4178,15 +2209,7 @@ "title": "The Running Man", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10522440858, - "modified_timestamp": "2026-01-02T09:38:52+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 8185.12, - "bitrate_kbps": 10284 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Gray.Man.2022.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-Lee@CHDWEB.mkv", @@ -4195,15 +2218,7 @@ "title": "The Gray Man", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4595163996, - "modified_timestamp": "2022-07-31T04:32:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7742.912, - "bitrate_kbps": 4747 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Sample/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4212,15 +2227,7 @@ "title": "Wrath of Man", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 91521183, - "modified_timestamp": "2021-07-14T13:03:16+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 63.804, - "bitrate_kbps": 11475 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wrath.of.Man.2021.720p.BluRay.x264-WiKi/Wrath.of.Man.2021.720p.BluRay.x264-WiKi.mkv", @@ -4229,15 +2236,7 @@ "title": "Wrath of Man", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6737936226, - "modified_timestamp": "2021-07-14T13:04:31+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7136.672, - "bitrate_kbps": 7553 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi/The.Sparring.Partner.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -4246,15 +2245,7 @@ "title": "The Sparring Partner", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8537070481, - "modified_timestamp": "2023-05-15T11:11:45+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8247.36, - "bitrate_kbps": 8281 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Sample/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4263,15 +2254,7 @@ "title": "Intouchables", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 61017028, - "modified_timestamp": "2020-03-07T03:16:06+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 65.083, - "bitrate_kbps": 7500 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Intouchables.2011.720p.BluRay.x264.DTS-WiKi/Intouchables.2011.720p.BluRay.x264.DTS-WiKi.mkv", @@ -4280,15 +2263,7 @@ "title": "Intouchables", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5915694748, - "modified_timestamp": "2020-03-07T03:28:35+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6722.048, - "bitrate_kbps": 7040 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dune.2021.1080p.HDRip.X264.AC3-EVO/Dune.2021.1080p.HDRip.X264.AC3-EVO.mkv", @@ -4297,15 +2272,7 @@ "title": "Dune", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11385653057, - "modified_timestamp": "2021-10-24T08:05:51+00:00", - "resolution": "1920x776", - "codec": "h264", - "duration_seconds": 8936.188, - "bitrate_kbps": 10192 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4314,15 +2281,7 @@ "title": "Extreme Job", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 131104516, - "modified_timestamp": "2021-12-18T05:28:50+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 66.344, - "bitrate_kbps": 15809 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi/Extreme.Job.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4331,15 +2290,7 @@ "title": "Extreme Job", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9658280721, - "modified_timestamp": "2021-12-18T05:29:05+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6669.632, - "bitrate_kbps": 11584 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Gojira-1.0.2023.1080p.BluRay.DD+.7.1.x264-SPHD.mkv", @@ -4348,15 +2299,7 @@ "title": "Gojira-1 0", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15046231726, - "modified_timestamp": "2024-05-03T04:11:36+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7478.179, - "bitrate_kbps": 16096 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4365,15 +2308,7 @@ "title": "The Pass Last Days of the Samurai", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862468304, - "modified_timestamp": "2023-01-08T09:35:34+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 6868.662, - "bitrate_kbps": 6828 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Pass.Last.Days.of.the.Samurai.2020.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -4382,15 +2317,7 @@ "title": "The Pass Last Days of the Samurai", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54703369, - "modified_timestamp": "2023-01-08T09:29:47+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 66.522, - "bitrate_kbps": 6578 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4399,15 +2326,7 @@ "title": "Boss Level", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11032675205, - "modified_timestamp": "2021-09-05T06:48:40+00:00", - "resolution": "1920x806", - "codec": "h264", - "duration_seconds": 6059.435, - "bitrate_kbps": 14565 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Boss.Level.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4416,15 +2335,7 @@ "title": "Boss Level", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 150503145, - "modified_timestamp": "2021-09-05T06:36:51+00:00", - "resolution": "1920x806", - "codec": "h264", - "duration_seconds": 61.228, - "bitrate_kbps": 19664 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/百元之恋.100.Yen.Love.2014.CHN.BDRip.1080p.x265.10bit.AC3.2Audio‐DGB/百元之恋.100.Yen.Love.2014.CHN.BDRip.1080p.x265.10bit.AC3.2Audio‐DGB.mkv", @@ -4433,15 +2344,7 @@ "title": "百元之恋 100 Yen Love", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6265913769, - "modified_timestamp": "2024-05-27T13:28:54+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6817.792, - "bitrate_kbps": 7352 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/The.Outpost.2020.720p.BluRay.x264-WiKi.mkv", @@ -4450,15 +2353,7 @@ "title": "The Outpost", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6234692420, - "modified_timestamp": "2021-06-27T11:01:46+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 7393.408, - "bitrate_kbps": 6746 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Outpost.2020.720p.BluRay.x264-WiKi/Sample/The.Outpost.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4467,15 +2362,7 @@ "title": "The Outpost", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 86583610, - "modified_timestamp": "2021-06-27T10:55:03+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 61.752, - "bitrate_kbps": 11216 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi/Wanted.2008.2160p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4484,15 +2371,7 @@ "title": "Wanted", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 27537097134, - "modified_timestamp": "2023-03-27T15:49:26+00:00", - "resolution": "3840x1632", - "codec": "hevc", - "duration_seconds": 6595.84, - "bitrate_kbps": 33399 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Captain.America.Brave.New.World.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/Captain.America.Brave.New.World.2025.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -4501,15 +2380,7 @@ "title": "Captain America Brave New World", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 26420844909, - "modified_timestamp": "2025-05-09T08:28:47+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 7112.32, - "bitrate_kbps": 29718 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Sample/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4518,15 +2389,7 @@ "title": "Summer Wars", "year": 2009, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110598969, - "modified_timestamp": "2018-08-24T11:18:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 61.792, - "bitrate_kbps": 14318 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi/Summer.Wars.2009.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4535,15 +2398,7 @@ "title": "Summer Wars", "year": 2009, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10218874414, - "modified_timestamp": "2018-08-24T11:42:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6853.097, - "bitrate_kbps": 11929 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Freelance.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4552,15 +2407,7 @@ "title": "Freelance", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7406257036, - "modified_timestamp": "2024-02-15T13:16:44+00:00", - "resolution": "1920x802", - "codec": "hevc", - "duration_seconds": 6514.059, - "bitrate_kbps": 9095 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/Sample/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -4569,15 +2416,7 @@ "title": "The Crimes That Bind", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 114613307, - "modified_timestamp": "2025-03-28T03:48:54+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 74.8, - "bitrate_kbps": 12258 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi/The.Crimes.That.Bind.2018.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4586,15 +2425,7 @@ "title": "The Crimes That Bind", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10736140531, - "modified_timestamp": "2025-03-28T04:07:50+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 7148.141, - "bitrate_kbps": 12015 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/临时劫案.Rob.N.Roll.2024.2160p.HQ.WEB-DL.H265.60fps.DDP5.1.2Audio-CHDWEB/Rob.N.Roll.2024.2160p.HQ.WEB-DL.H265.60fps.DDP5.1.2Audio-CHDWEB.mkv", @@ -4603,15 +2434,7 @@ "title": "Rob N Roll", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 19344234162, - "modified_timestamp": "2024-03-15T14:37:34+00:00", - "resolution": "3840x1616", - "codec": "hevc", - "duration_seconds": 5869.696, - "bitrate_kbps": 26364 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4620,15 +2443,7 @@ "title": "Bound", "year": 1996, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14035566930, - "modified_timestamp": "2021-09-12T15:55:20+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 6515.448, - "bitrate_kbps": 17233 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi/Sample/Bound.1996.1080p.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -4637,15 +2452,7 @@ "title": "Bound", "year": 1996, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110074972, - "modified_timestamp": "2021-09-12T15:17:28+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 48.496, - "bitrate_kbps": 18158 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Golden.Lotus.1974.1080p.BluRay.FLAC2.0.x264-PTer.mkv", @@ -4654,15 +2461,7 @@ "title": "The Golden Lotus", "year": 1974, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10057115849, - "modified_timestamp": "2023-11-23T11:04:53+00:00", - "resolution": "1920x796", - "codec": "h264", - "duration_seconds": 6987.147, - "bitrate_kbps": 11514 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/星に願いを。 2003 1080p HDTV x264 AAC.mkv", @@ -4671,15 +2470,7 @@ "title": "星に願いを。", "year": 2003, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 7513734336, - "modified_timestamp": "2022-06-05T09:52:24+00:00", - "resolution": "1920x1024", - "codec": "h264", - "duration_seconds": 6392.96, - "bitrate_kbps": 9402 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF/Mes.seances.de.lutte.2013.BDRip.X264.iNT-TLF.mkv", @@ -4688,15 +2479,7 @@ "title": "Mes seances de lutte", "year": 2013, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2514422074, - "modified_timestamp": "2020-10-28T14:46:25+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 6155.008, - "bitrate_kbps": 3268 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.mkv", @@ -4705,15 +2488,7 @@ "title": "Spider-Man No Way Home", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8101239757, - "modified_timestamp": "2022-03-12T13:35:02+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 8889.92, - "bitrate_kbps": 7290 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi/Sample/Spider-Man.No.Way.Home.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4722,15 +2497,7 @@ "title": "Spider-Man No Way Home", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 61513526, - "modified_timestamp": "2022-03-12T13:26:12+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 64.464, - "bitrate_kbps": 7633 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -4739,15 +2506,7 @@ "title": "Destiny The Tale of Kamakura", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11794312843, - "modified_timestamp": "2022-11-19T15:59:00+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7742.742, - "bitrate_kbps": 12186 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Destiny.The.Tale.of.Kamakura.2017.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -4756,15 +2515,7 @@ "title": "Destiny The Tale of Kamakura", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 108901209, - "modified_timestamp": "2022-11-19T15:58:51+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 54.645, - "bitrate_kbps": 15943 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/Sample/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4773,15 +2524,7 @@ "title": "A Christmas Gift from Bob", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 90138069, - "modified_timestamp": "2021-12-04T10:00:02+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 66.155, - "bitrate_kbps": 10900 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi/A.Christmas.Gift.from.Bob.2020.720p.BluRay.x264-WiKi.mkv", @@ -4790,15 +2533,7 @@ "title": "A Christmas Gift from Bob", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4654868794, - "modified_timestamp": "2021-12-04T10:05:16+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 5555.616, - "bitrate_kbps": 6702 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Godzilla.vs.Kong.2021.1080p.HMAX.WEB-DL.DDP5.1.CHS-ENG.x264.mkv", @@ -4807,15 +2542,7 @@ "title": "Godzilla vs Kong", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14561970574, - "modified_timestamp": "2021-06-10T09:20:13+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 6789.056, - "bitrate_kbps": 17159 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Puss.in.Boots.The.Last.Wish.2022.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Puss.in.Boots.The.Last.Wish.2022.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -4824,15 +2551,7 @@ "title": "Puss in Boots The Last Wish", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9593814253, - "modified_timestamp": "2023-03-03T15:13:21+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6141.152, - "bitrate_kbps": 12497 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB/Mad.Fate.2023.1080p.NowPlay.WEB-DL.H264.AAC-HHWEB.mkv", @@ -4841,15 +2560,7 @@ "title": "Mad Fate", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3773009416, - "modified_timestamp": "2024-10-12T00:08:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6243.04, - "bitrate_kbps": 4834 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi/Exhuma.2024.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -4858,15 +2569,7 @@ "title": "Exhuma", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8537379181, - "modified_timestamp": "2024-10-02T01:19:49+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 8039.072, - "bitrate_kbps": 8495 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/正牌韦小宝之奉旨沟女.Hero.from.Beyond.the.Boundary.of.Time.1993.D5.2Audio.MiniSD-TLF.mkv", @@ -4875,15 +2578,7 @@ "title": "正牌韦小宝之奉旨沟女 Hero from Beyond the Boundary of Time", "year": 1993, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 864947350, - "modified_timestamp": "2022-01-04T15:10:42+00:00", - "resolution": "704x390", - "codec": "h264", - "duration_seconds": 5846.8, - "bitrate_kbps": 1183 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Inside.Out.2.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Inside.Out.2.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -4892,15 +2587,7 @@ "title": "Inside Out 2", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9623350561, - "modified_timestamp": "2024-09-12T09:45:50+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5788.0, - "bitrate_kbps": 13301 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4909,15 +2596,7 @@ "title": "Girls to Buy", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10315318899, - "modified_timestamp": "2022-09-22T12:39:39+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8659.797, - "bitrate_kbps": 9529 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Girls.to.Buy.2021.Uncut.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -4926,15 +2605,7 @@ "title": "Girls to Buy", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 80033944, - "modified_timestamp": "2022-09-22T12:39:39+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 66.417, - "bitrate_kbps": 9640 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Her.Story.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -4943,15 +2614,7 @@ "title": "Her Story", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7695359810, - "modified_timestamp": "2025-05-10T02:51:25+00:00", - "resolution": "1920x892", - "codec": "hevc", - "duration_seconds": 7397.459, - "bitrate_kbps": 8322 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi/Galileo.Forbidden.Sorcery.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -4960,15 +2623,7 @@ "title": "Galileo Forbidden Sorcery", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4695159535, - "modified_timestamp": "2023-03-16T13:56:23+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6202.208, - "bitrate_kbps": 6056 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Road.House.2024.2160p.AMZN.WEB-DL.H265.HDR.DDP5.1-ADWeb/Road.House.2024.2160p.AMZN.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv", @@ -4977,15 +2632,7 @@ "title": "Road House", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14190946598, - "modified_timestamp": "2024-03-21T10:21:05+00:00", - "resolution": "3840x1600", - "codec": "hevc", - "duration_seconds": 7404.576, - "bitrate_kbps": 15332 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Sample/Pig.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -4994,15 +2641,7 @@ "title": "Pig", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 45457145, - "modified_timestamp": "2021-10-03T04:12:46+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 60.569, - "bitrate_kbps": 6004 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Pig.2021.720p.BluRay.x264-WiKi/Pig.2021.720p.BluRay.x264-WiKi.mkv", @@ -5011,15 +2650,7 @@ "title": "Pig", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4695901945, - "modified_timestamp": "2021-10-03T04:18:18+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 5478.496, - "bitrate_kbps": 6857 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Listen.to.My.Heart.2009.1080p.AMZN.WEB-DL.DDP5.1.x264-ARiN.mkv", @@ -5028,15 +2659,7 @@ "title": "Listen to My Heart", "year": 2009, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9469771802, - "modified_timestamp": "2021-02-17T02:58:48+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6443.729, - "bitrate_kbps": 11756 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5045,15 +2668,7 @@ "title": "Your Name", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 112745317, - "modified_timestamp": "2021-04-20T12:22:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 60.675, - "bitrate_kbps": 14865 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi/Your.Name.2016.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5062,15 +2677,7 @@ "title": "Your Name", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9491689036, - "modified_timestamp": "2021-04-20T12:25:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6395.648, - "bitrate_kbps": 11872 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Inside.Out.2.2024.PROPER.UHD.BluRay.2160p.10bit.DV.3Audio.TrueHD(Atmos).7.1.x265-beAst/Inside.Out.2.2024.PROPER.UHD.BluRay.2160p.10bit.DV.3Audio.TrueHD(Atmos).7.1.x265-beAst.mkv", @@ -5079,15 +2686,7 @@ "title": "Inside Out 2", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12870821940, - "modified_timestamp": "2025-01-22T09:31:38+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 5782.212, - "bitrate_kbps": 17807 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi/A.Guilty.Conscience.2023.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -5096,15 +2695,7 @@ "title": "A Guilty Conscience", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7033116893, - "modified_timestamp": "2023-08-02T00:21:59+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 8009.856, - "bitrate_kbps": 7024 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/隣人X 疑惑の彼女 2023 1080p HDTV x264 AAC5.1.mkv", @@ -5113,15 +2704,7 @@ "title": "隣人X 疑惑の彼女", "year": 2023, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 3951518203, - "modified_timestamp": "2024-12-08T02:16:47+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7214.833, - "bitrate_kbps": 4381 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Sample/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.sample.mkv", @@ -5130,15 +2713,7 @@ "title": "Kakegurui 2 Ultimate Russian Roulette", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53113392, - "modified_timestamp": "2021-11-11T13:32:30+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 68.546, - "bitrate_kbps": 6198 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi/Kakegurui.2.Ultimate.Russian.Roulette.2021.720p.BluRay.x264-WiKi.mkv", @@ -5147,15 +2722,7 @@ "title": "Kakegurui 2 Ultimate Russian Roulette", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4695270714, - "modified_timestamp": "2021-11-11T13:33:26+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 7099.009, - "bitrate_kbps": 5291 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi/Gladiator.II.2024.1080p.BluRay.x264.Atmos.TrueHD7.1-WiKi.mkv", @@ -5164,15 +2731,7 @@ "title": "Gladiator II", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 18548675974, - "modified_timestamp": "2025-03-01T05:17:51+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 8872.011, - "bitrate_kbps": 16725 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5181,15 +2740,7 @@ "title": "A Moment of Romance", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12253607089, - "modified_timestamp": "2021-03-07T03:20:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5517.888, - "bitrate_kbps": 17765 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi/Sample/A.Moment.of.Romance.1990.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5198,15 +2749,7 @@ "title": "A Moment of Romance", "year": 1990, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 152053405, - "modified_timestamp": "2021-03-07T03:05:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 61.641, - "bitrate_kbps": 19734 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -5215,15 +2758,7 @@ "title": "Golden Slumber", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 84805555, - "modified_timestamp": "2022-10-28T14:06:48+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 64.779, - "bitrate_kbps": 10473 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi/Golden.Slumber.2010.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -5232,15 +2767,7 @@ "title": "Golden Slumber", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11013564586, - "modified_timestamp": "2022-10-28T14:11:55+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 8409.401, - "bitrate_kbps": 10477 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/All.Quiet.on.the.Western.Front.2022.1080p.BluRay.x265.10bit.TrueHD7.1-WiKi/All.Quiet.on.the.Western.Front.2022.1080p.BluRay.x265.10bit.TrueHD7.1-WiKi.mkv", @@ -5249,15 +2776,7 @@ "title": "All Quiet on the Western Front", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12644285587, - "modified_timestamp": "2023-03-24T11:20:06+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8817.792, - "bitrate_kbps": 11471 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Superman.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -5266,15 +2785,7 @@ "title": "Superman", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11522679057, - "modified_timestamp": "2025-10-30T12:45:43+00:00", - "resolution": "1920x1012", - "codec": "hevc", - "duration_seconds": 7763.68, - "bitrate_kbps": 11873 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Nobody.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Nobody.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -5283,15 +2794,7 @@ "title": "Nobody 2", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6899965350, - "modified_timestamp": "2025-10-05T05:45:42+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5364.032, - "bitrate_kbps": 10290 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Godzilla.x.Kong.The.New.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Godzilla.x.Kong.The.New.Empire.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -5300,15 +2803,7 @@ "title": "Godzilla x Kong The New Empire", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11428799014, - "modified_timestamp": "2024-06-08T04:46:32+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6880.896, - "bitrate_kbps": 13287 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Prey.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -5317,15 +2812,7 @@ "title": "Prey", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7104855660, - "modified_timestamp": "2023-10-06T12:31:45+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5975.97, - "bitrate_kbps": 9511 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/Sample/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -5334,15 +2821,7 @@ "title": "A Writer's Odyssey", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 89736503, - "modified_timestamp": "2021-09-08T12:42:58+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 70.288, - "bitrate_kbps": 10213 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi/A.Writer's.Odyssey.2021.720p.BluRay.x264-WiKi.mkv", @@ -5351,15 +2830,7 @@ "title": "A Writer's Odyssey", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6033227451, - "modified_timestamp": "2021-09-08T12:50:44+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 7790.08, - "bitrate_kbps": 6195 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Sample/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5368,15 +2839,7 @@ "title": "Baby Driver", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 134095933, - "modified_timestamp": "2020-07-09T06:38:08+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 62.528, - "bitrate_kbps": 17156 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi/Baby.Driver.2017.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5385,15 +2848,7 @@ "title": "Baby Driver", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 16449832324, - "modified_timestamp": "2020-07-09T06:39:59+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6759.755, - "bitrate_kbps": 19467 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Hard.Hit.2021.720p.BluRay.x264-WiKi.mkv", @@ -5402,15 +2857,7 @@ "title": "Hard Hit", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4796651730, - "modified_timestamp": "2022-01-25T13:17:40+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 5662.208, - "bitrate_kbps": 6777 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hard.Hit.2021.720p.BluRay.x264-WiKi/Sample/Hard.Hit.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -5419,15 +2866,7 @@ "title": "Hard Hit", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53117093, - "modified_timestamp": "2022-01-25T13:12:54+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 63.006, - "bitrate_kbps": 6744 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tron Ares 2025 USA BluRay 1080p DTS-HDMA7.1 x265 10bit-CHD/Tron Ares 2025 USA BluRay 1080p DTS-HDMA7.1 x265 10bit-CHD.mkv", @@ -5436,15 +2875,7 @@ "title": "Tron Ares", "year": 2025, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 12319799640, - "modified_timestamp": "2026-01-14T13:17:40+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7128.128, - "bitrate_kbps": 13826 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi/Sinners 2025 REPACK 1080p BluRay x265 10bit TrueHD-WiKi.mkv", @@ -5453,15 +2884,7 @@ "title": "Sinners", "year": 2025, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 11875278812, - "modified_timestamp": "2025-07-15T02:16:02+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 8253.913, - "bitrate_kbps": 11509 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Raging Fire Exclusive Documentary 2021 WEB-DL 1080p H264 DDP 2.0-Dave.mkv", @@ -5470,15 +2893,7 @@ "title": "Raging Fire Exclusive Documentary", "year": 2021, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 264835242, - "modified_timestamp": "2021-08-16T15:51:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1236.512, - "bitrate_kbps": 1713 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -5487,15 +2902,7 @@ "title": "A Man", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7043909131, - "modified_timestamp": "2023-06-16T03:45:17+00:00", - "resolution": "1792x1080", - "codec": "hevc", - "duration_seconds": 7329.323, - "bitrate_kbps": 7688 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Family.Plan.2023.1080p.Apple.TV+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -5504,15 +2911,7 @@ "title": "The Family Plan", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9492040340, - "modified_timestamp": "2026-01-22T07:41:05+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7124.451, - "bitrate_kbps": 10658 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Waiting.For.Rain.2021.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", @@ -5521,15 +2920,7 @@ "title": "Waiting For Rain", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2827546418, - "modified_timestamp": "2021-08-27T15:08:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7025.129, - "bitrate_kbps": 3219 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Sample/Let.Him.Go.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -5538,15 +2929,7 @@ "title": "Let Him Go", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 46750437, - "modified_timestamp": "2021-01-27T11:32:11+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 60.566, - "bitrate_kbps": 6175 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Let.Him.Go.2020.720p.BluRay.x264-WiKi/Let.Him.Go.2020.720p.BluRay.x264-WiKi.mkv", @@ -5555,15 +2938,7 @@ "title": "Let Him Go", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5145299913, - "modified_timestamp": "2021-01-27T11:36:30+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6817.344, - "bitrate_kbps": 6037 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/步履不停.2008.CC.1080p.日语.简繁中字£CMCT槿年/[步履不停].Still.Walking.2008.CC.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -5572,15 +2947,7 @@ "title": "Still Walking", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10306799427, - "modified_timestamp": "2025-06-23T11:06:52+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 6894.934, - "bitrate_kbps": 11958 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム 1080p AbemaTV WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -5589,15 +2956,7 @@ "title": "松本清張「ガラスの城」テレビ朝日開局65周年記念 松本清張二夜連続ドラマプレミアム AbemaTV -Solitude@DoA", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3224254660, - "modified_timestamp": "2024-01-16T13:46:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6146.159, - "bitrate_kbps": 4196 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/Shang.Chi.and.the.Legend.of.the.Ten.Rings.2021.1080p.BDRip.X264.DTS-EVO/Shang.Chi.and.the.Legend.of.the.Ten.Rings.2021.1080p.BDRip.X264.DTS-EVO.mkv", @@ -5606,15 +2965,7 @@ "title": "Shang Chi and the Legend of the Ten Rings", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6825495849, - "modified_timestamp": "2021-11-10T01:24:04+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7940.766, - "bitrate_kbps": 6876 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crying.Out.Love, in.the.Center.of.the.World.2004.1080p.AMZN.WEB-DL.DDP5.1.H.264-ARiN.mkv", @@ -5623,15 +2974,7 @@ "title": "Crying Out Love, in the Center of the World", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7537413729, - "modified_timestamp": "2021-06-19T05:00:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8309.792, - "bitrate_kbps": 7256 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.mkv", @@ -5640,15 +2983,7 @@ "title": "Inside Men", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8535378132, - "modified_timestamp": "2020-06-13T13:33:38+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 10829.536, - "bitrate_kbps": 6305 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi/Sample/Inside.Men.2015.Director's.Cut.720p.BluRay.x264-WiKi.Sample.mkv", @@ -5657,15 +2992,7 @@ "title": "Inside Men", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 67381496, - "modified_timestamp": "2020-06-13T13:22:01+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 64.495, - "bitrate_kbps": 8358 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Triangle.of.Sadness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -5674,15 +3001,7 @@ "title": "Triangle of Sadness", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10883598114, - "modified_timestamp": "2023-02-19T09:25:33+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8818.084, - "bitrate_kbps": 9873 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/Sample/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -5691,15 +3010,7 @@ "title": "The Fable The Killer Who Doesn't Kill", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 115143221, - "modified_timestamp": "2021-11-19T13:03:17+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 56.899, - "bitrate_kbps": 16189 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi/The.Fable.The Killer.Who.Doesn't.Kill.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5708,15 +3019,7 @@ "title": "The Fable The Killer Who Doesn't Kill", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11811218561, - "modified_timestamp": "2021-11-19T13:07:30+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7891.384, - "bitrate_kbps": 11973 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/bad.boys.for.life.2020.1080p.bluray.x264-wutang.mkv", @@ -5725,15 +3028,7 @@ "title": "bad boys for life", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10552950759, - "modified_timestamp": "2020-04-10T13:57:24+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 7438.432, - "bitrate_kbps": 11349 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bad.Boys.for.Life.2020.1080p.BluRay.x264-WUTANG/Sample/bad.boys.for.life.2020.1080p.bluray.x264-wutang-sample.mkv", @@ -5742,15 +3037,7 @@ "title": "bad boys for life", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 76360378, - "modified_timestamp": "2020-04-10T13:45:36+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 69.868, - "bitrate_kbps": 8743 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.mkv", @@ -5759,15 +3046,7 @@ "title": "Confidential Assignment", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9853362264, - "modified_timestamp": "2022-11-01T10:52:05+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7454.016, - "bitrate_kbps": 10575 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi/Sample/Confidential.Assignment.2017.1080p.BluRay.x264-WiKi.Sample.mkv", @@ -5776,15 +3055,7 @@ "title": "Confidential Assignment", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 107123904, - "modified_timestamp": "2022-11-01T10:51:02+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 98.987, - "bitrate_kbps": 8657 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5793,15 +3064,7 @@ "title": "Weathering with You", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10939446599, - "modified_timestamp": "2021-04-20T12:22:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6733.727, - "bitrate_kbps": 12996 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi/Sample/Weathering.with.You.2019.RERiP.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5810,15 +3073,7 @@ "title": "Weathering with You", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 135237219, - "modified_timestamp": "2021-04-20T12:15:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 61.841, - "bitrate_kbps": 17494 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/爱,不由自主.2017.1080p.日语.简繁中字£CMCT陆判/[爱,不由自主].Narratage.2017.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -5827,15 +3082,7 @@ "title": "[爱,不由自主] Narratage", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13595442409, - "modified_timestamp": "2025-09-04T06:24:21+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 8383.801, - "bitrate_kbps": 12973 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5844,15 +3091,7 @@ "title": "Muzi v nadeji", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 106666718, - "modified_timestamp": "2020-06-03T17:41:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 67.96, - "bitrate_kbps": 12556 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi/Muzi.v.nadeji.2011.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -5861,15 +3100,7 @@ "title": "Muzi v nadeji", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10756840494, - "modified_timestamp": "2020-06-03T17:43:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6613.995, - "bitrate_kbps": 13011 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Wild.Robot.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Wild.Robot.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -5878,15 +3109,7 @@ "title": "The Wild Robot", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9149282918, - "modified_timestamp": "2024-11-25T12:06:57+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6104.0, - "bitrate_kbps": 11991 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/明日を綴る写真館 2024 1080p HDTV x264 AAC5.1.mkv", @@ -5895,15 +3118,7 @@ "title": "明日を綴る写真館", "year": 2024, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 5932227687, - "modified_timestamp": "2025-03-30T09:22:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6261.76, - "bitrate_kbps": 7578 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hidden.Face.2024.1080p.CPNG.WEB-DL.AAC2.0.H264-HHWEB/Hidden.Face.2024.1080p.CPNG.WEB-DL.AAC2.0.H264-HHWEB.mkv", @@ -5912,15 +3127,7 @@ "title": "Hidden Face", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2185258383, - "modified_timestamp": "2025-01-31T10:01:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6921.344, - "bitrate_kbps": 2525 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Seed.of.the.Sacred.Fig.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Seed.of.the.Sacred.Fig.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -5929,15 +3136,7 @@ "title": "The Seed of the Sacred Fig", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12866335876, - "modified_timestamp": "2025-02-15T07:32:44+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 10008.651, - "bitrate_kbps": 10284 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.mkv", @@ -5946,15 +3145,7 @@ "title": "Maigret Sets a Trap", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4264825798, - "modified_timestamp": "2021-08-19T14:22:33+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5192.04, - "bitrate_kbps": 6571 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigret.Sets.a.Trap.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5963,15 +3154,7 @@ "title": "Maigret Sets a Trap", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57083698, - "modified_timestamp": "2021-08-19T14:20:49+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 66.6, - "bitrate_kbps": 6856 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Sample/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -5980,15 +3163,7 @@ "title": "Maigrets Dead Man", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53766652, - "modified_timestamp": "2021-08-19T14:12:46+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 64.2, - "bitrate_kbps": 6699 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Maigret.2016.2in1.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi/Maigrets.Dead.Man.2016.720p.BluRay.x264.DTS-WiKi.mkv", @@ -5997,15 +3172,7 @@ "title": "Maigrets Dead Man", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4355470260, - "modified_timestamp": "2021-08-19T14:22:35+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5303.84, - "bitrate_kbps": 6569 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Shall.we.dance.1996.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -6014,15 +3181,7 @@ "title": "Shall we dance", "year": 1996, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 103975461, - "modified_timestamp": "2022-09-03T09:18:09+00:00", - "resolution": "1918x1036", - "codec": "hevc", - "duration_seconds": 61.186, - "bitrate_kbps": 13594 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi/Shall.we.dance.1996.Remastered.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6031,15 +3190,7 @@ "title": "Shall we dance", "year": 1996, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13689504233, - "modified_timestamp": "2022-09-03T09:33:00+00:00", - "resolution": "1918x1036", - "codec": "hevc", - "duration_seconds": 8199.191, - "bitrate_kbps": 13356 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Warriors of Future 2022 NF WEB-DL 1080p H.264 DDP 5.1 10Audios-Dave.mkv", @@ -6048,15 +3199,7 @@ "title": "Warriors of Future", "year": 2022, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 8633392078, - "modified_timestamp": "2022-12-05T02:14:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6074.528, - "bitrate_kbps": 11369 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/DogMan.2023.1080p.BluRay.x265.10bit-WiKi/DogMan.2023.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -6065,15 +3208,7 @@ "title": "DogMan", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5869049836, - "modified_timestamp": "2024-02-01T07:27:32+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6870.24, - "bitrate_kbps": 6834 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Bushido.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6082,15 +3217,7 @@ "title": "Bushido", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5870509283, - "modified_timestamp": "2024-12-31T06:27:13+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7769.483, - "bitrate_kbps": 6044 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Sample/Way.Down.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -6099,15 +3226,7 @@ "title": "Way Down", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 79923387, - "modified_timestamp": "2021-07-24T10:49:12+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 63.698, - "bitrate_kbps": 10037 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Way.Down.2021.720p.BluRay.x264-WiKi/Way.Down.2021.720p.BluRay.x264-WiKi.mkv", @@ -6116,15 +3235,7 @@ "title": "Way Down", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5638400942, - "modified_timestamp": "2021-07-24T10:49:58+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7096.032, - "bitrate_kbps": 6356 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -6133,15 +3244,7 @@ "title": "Parallel World Love Story", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 104860583, - "modified_timestamp": "2022-07-17T15:47:58+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 92.973, - "bitrate_kbps": 9022 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi/Parallel.World.Love.Story.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6150,15 +3253,7 @@ "title": "Parallel World Love Story", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9657194489, - "modified_timestamp": "2022-07-17T15:48:00+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6512.512, - "bitrate_kbps": 11862 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/漫长的告别.The.Long.Goodbye.1973.BluRay.1080p.x265.10bit.FLAC.MNHD-FRDS/The.Long.Goodbye.1973.BluRay.1080p.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -6167,15 +3262,7 @@ "title": "The Long Goodbye", "year": 1973, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14736725324, - "modified_timestamp": "2023-06-04T14:40:06+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6723.766, - "bitrate_kbps": 17533 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/Sample/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.sample.mkv", @@ -6184,15 +3271,7 @@ "title": "The Door Into Summer", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53136627, - "modified_timestamp": "2022-01-13T14:20:39+00:00", - "resolution": "1280x694", - "codec": "h264", - "duration_seconds": 60.79, - "bitrate_kbps": 6992 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi/The.Door.Into.Summer.2021.720p.BluRay.x264-WiKi.mkv", @@ -6201,15 +3280,7 @@ "title": "The Door Into Summer", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4692606096, - "modified_timestamp": "2022-01-13T14:20:45+00:00", - "resolution": "1280x694", - "codec": "h264", - "duration_seconds": 7136.16, - "bitrate_kbps": 5260 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/Sample/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.sample.mkv", @@ -6218,15 +3289,7 @@ "title": "The Confidence Man JP SP", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54194818, - "modified_timestamp": "2020-06-09T02:43:17+00:00", - "resolution": "1278x720", - "codec": "h264", - "duration_seconds": 99.658, - "bitrate_kbps": 4350 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi/The.Confidence.Man.JP.SP.2019.720p.BluRay.x264-WiKi.mkv", @@ -6235,15 +3298,7 @@ "title": "The Confidence Man JP SP", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4262352508, - "modified_timestamp": "2020-06-09T02:43:22+00:00", - "resolution": "1278x720", - "codec": "h264", - "duration_seconds": 6257.728, - "bitrate_kbps": 5449 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Monster.Hunter.2020.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTG.mkv", @@ -6252,15 +3307,7 @@ "title": "Monster Hunter", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6785495376, - "modified_timestamp": "2021-02-17T03:52:23+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6186.944, - "bitrate_kbps": 8773 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Beekeeper.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Beekeeper.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -6269,15 +3316,7 @@ "title": "The Beekeeper", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9681559013, - "modified_timestamp": "2024-03-21T09:15:48+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6314.144, - "bitrate_kbps": 12266 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Luca.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -6286,15 +3325,7 @@ "title": "Luca", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 159684078, - "modified_timestamp": "2021-08-08T10:24:36+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 65.415, - "bitrate_kbps": 19528 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Luca.2021.1080p.BluRay.x264.DTS-WiKi/Luca.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6303,15 +3334,7 @@ "title": "Luca", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10668726354, - "modified_timestamp": "2021-08-08T10:41:55+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 5715.104, - "bitrate_kbps": 14934 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Soul.2021.1080p.NF.WEB-DL.DDP5.1.x264-DoA.mkv", @@ -6320,15 +3343,7 @@ "title": "The Soul", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2639248456, - "modified_timestamp": "2021-04-15T15:44:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7823.648, - "bitrate_kbps": 2698 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Dog.2022.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6337,15 +3352,7 @@ "title": "Dog", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12448761855, - "modified_timestamp": "2022-05-26T10:20:38+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6081.953, - "bitrate_kbps": 16374 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -6354,15 +3361,7 @@ "title": "Dog", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 122723290, - "modified_timestamp": "2022-05-26T10:20:05+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 62.563, - "bitrate_kbps": 15692 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv", @@ -6371,15 +3370,7 @@ "title": "Vernost AKA Fidelity", "year": 2019, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 8768133740, - "modified_timestamp": "2020-12-24T14:16:05+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 4906.112, - "bitrate_kbps": 14297 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai/Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai.mkv", @@ -6388,32 +3379,7 @@ "title": "Swordsman 2", "year": 1992, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14811770763, - "modified_timestamp": "2020-06-26T14:41:14+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 6514.976, - "bitrate_kbps": 18187 - } - }, - { - "path": "/mnt/Downloads/movies/Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", - "filename": "Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv", - "category": "movie", - "title": "Detective VS Sleuths", - "year": 2022, - "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 3684770524, - "modified_timestamp": "2022-08-27T10:57:48+00:00", - "resolution": "3840x1612", - "codec": "hevc", - "duration_seconds": 6056.832, - "bitrate_kbps": 4866 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG/Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", @@ -6422,15 +3388,7 @@ "title": "Extraction", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4768429320, - "modified_timestamp": "2020-04-26T05:42:43+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 7046.688, - "bitrate_kbps": 5413 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6439,15 +3397,7 @@ "title": "Julie & Julia", "year": 2009, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9734910533, - "modified_timestamp": "2025-03-13T10:49:37+00:00", - "resolution": "1920x1040", - "codec": "hevc", - "duration_seconds": 7392.395, - "bitrate_kbps": 10535 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv", @@ -6456,15 +3406,7 @@ "title": "Moonlight Express", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7898122818, - "modified_timestamp": "2025-08-28T01:02:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 6337.472, - "bitrate_kbps": 9970 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Sample/Moonlight.Express.1999.720p.BluRay.x264-WiKi.Sample.mkv", @@ -6473,15 +3415,7 @@ "title": "Moonlight Express", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 63867389, - "modified_timestamp": "2025-08-27T15:25:09+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 44.799, - "bitrate_kbps": 11405 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hitman Agent Jun (2020) [1080p] [WEBRip] [5.1] [YTS.MX]/Hitman.Agent.Jun.2020.1080p.WEBRip.x264.AAC5.1-[YTS.MX].mp4", @@ -6490,15 +3424,7 @@ "title": "Hitman Agent Jun", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2173106483, - "modified_timestamp": "2021-02-15T16:07:12+00:00", - "resolution": "1920x1024", - "codec": "h264", - "duration_seconds": 6588.704, - "bitrate_kbps": 2638 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/カツベン! 2019 1080p HDTV x264 AAC5.1-DoA.mkv", @@ -6507,15 +3433,7 @@ "title": "カツベン!", "year": 2019, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 10326932006, - "modified_timestamp": "2020-10-24T03:52:18+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7591.918, - "bitrate_kbps": 10882 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Colors.Within.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6524,15 +3442,7 @@ "title": "The Colors Within", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3769851450, - "modified_timestamp": "2025-03-04T09:34:04+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 6041.046, - "bitrate_kbps": 4992 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -6541,15 +3451,7 @@ "title": "The Lost City", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 65179642, - "modified_timestamp": "2022-07-17T15:39:40+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 64.057, - "bitrate_kbps": 8140 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi/The.Lost.City.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -6558,15 +3460,7 @@ "title": "The Lost City", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6950728905, - "modified_timestamp": "2022-07-17T15:39:58+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6705.056, - "bitrate_kbps": 8293 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi/Muroi.Shinji.Not.Defeated.2024.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6575,15 +3469,7 @@ "title": "Muroi Shinji Not Defeated", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10470381166, - "modified_timestamp": "2025-12-28T11:59:19+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 6880.341, - "bitrate_kbps": 12174 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6592,15 +3478,7 @@ "title": "Shoplifters", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12130044474, - "modified_timestamp": "2024-05-26T14:00:31+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7254.393, - "bitrate_kbps": 13376 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi/Sample/Shoplifters.2018.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -6609,15 +3487,7 @@ "title": "Shoplifters", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 118965562, - "modified_timestamp": "2024-05-26T14:00:21+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 62.568, - "bitrate_kbps": 15211 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina/Shin.Ultraman.2022.BluRay.1080p.x264.Atmos.TrueHD7.1-HDChina.mkv", @@ -6626,15 +3496,7 @@ "title": "Shin Ultraman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15675545441, - "modified_timestamp": "2023-04-13T01:20:23+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6730.724, - "bitrate_kbps": 18631 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG/My Bossy Girl 2019 WEB-DL 1080P H264 AAC-TTG.mkv", @@ -6643,15 +3505,7 @@ "title": "My Bossy Girl", "year": 2019, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 4421689627, - "modified_timestamp": "2020-06-26T10:12:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6010.176, - "bitrate_kbps": 5885 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/[恶世之子].To.Catch.a.Killer.2023.BluRay.1080p.x265.10bit.DTS-CMCT/[恶世之子].To.Catch.a.Killer.2023.BluRay.1080p.x265.10bit.DTS-CMCT.mkv", @@ -6660,15 +3514,7 @@ "title": "To Catch a Killer", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6659054641, - "modified_timestamp": "2023-09-10T15:17:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 7153.024, - "bitrate_kbps": 7447 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/PBS.美国经历.长津湖战役.American.Experience.The.Battle.of.Chosin.2016.WEB-DL.MiniSD-TLF.mkv", @@ -6677,15 +3523,7 @@ "title": "PBS 美国经历 长津湖战役 American Experience The Battle of Chosin", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 958923963, - "modified_timestamp": "2021-10-09T03:18:59+00:00", - "resolution": "854x480", - "codec": "h264", - "duration_seconds": 6863.178, - "bitrate_kbps": 1117 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/翻译疑云.Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS/Les.Traducteurs.2019.Bluray.1080p.x265.10bit.MNHD-FRDS.mkv", @@ -6694,15 +3532,7 @@ "title": "Les Traducteurs", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6331315690, - "modified_timestamp": "2022-05-15T04:41:10+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6301.0, - "bitrate_kbps": 8038 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/Sample/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -6711,15 +3541,7 @@ "title": "The Devils Advocate", "year": 1997, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 128410416, - "modified_timestamp": "2023-10-29T14:54:05+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 52.116, - "bitrate_kbps": 19711 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi/The.Devils.Advocate.1997.UNRATED.DC.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6728,15 +3550,7 @@ "title": "The Devils Advocate", "year": 1997, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 16095824691, - "modified_timestamp": "2023-10-29T14:56:09+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 8635.819, - "bitrate_kbps": 14910 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Roundup.Punishment.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/The.Roundup.Punishment.2024.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -6745,15 +3559,7 @@ "title": "The Roundup Punishment", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8349714762, - "modified_timestamp": "2024-08-31T11:15:33+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6551.584, - "bitrate_kbps": 10195 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Foundation.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-CasStudio/Foundation.2021.S01E10.The.Leap.1080p.ATVP.WEB-DL.DDP5.1.H.264-CasStudio.mkv", @@ -6762,15 +3568,7 @@ "title": "Foundation", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4931491878, - "modified_timestamp": "2021-11-20T17:25:52+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3631.936, - "bitrate_kbps": 10862 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6779,15 +3577,7 @@ "title": "Fortune Favors Lady Nikuko", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7053086784, - "modified_timestamp": "2022-06-05T02:12:24+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5775.008, - "bitrate_kbps": 9770 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Fortune.Favors.Lady.Nikuko.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -6796,15 +3586,7 @@ "title": "Fortune Favors Lady Nikuko", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 106177561, - "modified_timestamp": "2022-06-05T02:08:09+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 81.818, - "bitrate_kbps": 10381 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lonely.Castle.in.the.Mirror.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Lonely.Castle.in.the.Mirror.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6813,15 +3595,7 @@ "title": "Lonely Castle in the Mirror", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7771566818, - "modified_timestamp": "2023-10-20T11:56:53+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 7039.329, - "bitrate_kbps": 8832 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.mkv", @@ -6830,15 +3604,7 @@ "title": "Wotakoi Love Is Hard for Otaku", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5372616722, - "modified_timestamp": "2020-08-25T12:05:13+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6838.837, - "bitrate_kbps": 6284 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi/Sample/Wotakoi.Love.Is.Hard.for.Otaku.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -6847,15 +3613,7 @@ "title": "Wotakoi Love Is Hard for Otaku", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53035882, - "modified_timestamp": "2020-08-25T11:58:38+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 61.401, - "bitrate_kbps": 6910 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Man.Called.Otto.2022.1080p.BluRay.x265.10bit.DTS-WiKi/A.Man.Called.Otto.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6864,15 +3622,7 @@ "title": "A Man Called Otto", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8794321270, - "modified_timestamp": "2023-03-16T14:05:34+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 7570.563, - "bitrate_kbps": 9293 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi/The.Substance.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6881,15 +3631,7 @@ "title": "The Substance", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9659254122, - "modified_timestamp": "2024-12-31T10:38:25+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8530.923, - "bitrate_kbps": 9058 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Den.of.Thieves.2.Pantera.2025.2160p.UHD.BluRay.x265.10bit.DV.TrueHD.7.1.Atmos-ADE/Den.of.Thieves.2.Pantera.2025.2160p.UHD.BluRay.x265.10bit.DV.TrueHD.7.1.Atmos-ADE.mkv", @@ -6898,15 +3640,7 @@ "title": "Den of Thieves 2 Pantera", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 29990429499, - "modified_timestamp": "2025-03-04T10:24:40+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 8655.648, - "bitrate_kbps": 27718 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -6915,15 +3649,7 @@ "title": "Bullet Train", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 212693407, - "modified_timestamp": "2022-10-21T14:14:32+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 65.151, - "bitrate_kbps": 26116 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi/Bullet.Train.2022.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -6932,15 +3658,7 @@ "title": "Bullet Train", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13646712802, - "modified_timestamp": "2022-10-21T14:15:41+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7591.798, - "bitrate_kbps": 14380 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi/Burnt.2015.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6949,15 +3667,7 @@ "title": "Burnt", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7230783600, - "modified_timestamp": "2025-04-06T13:10:07+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6054.795, - "bitrate_kbps": 9553 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -6966,15 +3676,7 @@ "title": "The Mole Song Final", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53570620, - "modified_timestamp": "2022-05-27T12:57:04+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 41.464, - "bitrate_kbps": 10335 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi/The.Mole.Song.Final.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -6983,15 +3685,7 @@ "title": "The Mole Song Final", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5867500549, - "modified_timestamp": "2022-05-27T13:01:50+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7690.699, - "bitrate_kbps": 6103 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -7000,15 +3694,7 @@ "title": "Drive My Car", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 121022669, - "modified_timestamp": "2022-03-01T10:46:04+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 69.237, - "bitrate_kbps": 13983 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi/Drive.My.Car.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -7017,15 +3703,7 @@ "title": "Drive My Car", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 18128252155, - "modified_timestamp": "2022-03-01T10:47:15+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 10735.019, - "bitrate_kbps": 13509 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/SexWorld.1978.1080p.BluRay.x264.AAC-PornPlus.mp4", @@ -7034,15 +3712,7 @@ "title": "SexWorld", "year": 1978, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1405392739, - "modified_timestamp": "2016-10-11T12:42:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5433.92, - "bitrate_kbps": 2069 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Loro.2018.720p.BluRay.DD5.1.x264-BMDru/Loro.2018.720p.BluRay.DD5.1.x264-BMDru.mkv", @@ -7051,15 +3721,7 @@ "title": "Loro", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4462245725, - "modified_timestamp": "2020-05-02T04:53:06+00:00", - "resolution": "1280x534", - "codec": "h264", - "duration_seconds": 9063.616, - "bitrate_kbps": 3938 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/日班猎人.Day.Shift.2022.1080p.NF.WEB-DL.H264.DDP5.1-OurTV/日班猎人.Day.Shift.2022.1080p.NF.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -7068,15 +3730,7 @@ "title": "日班猎人 Day Shift", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6078345081, - "modified_timestamp": "2022-08-13T16:16:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6801.056, - "bitrate_kbps": 7149 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -7085,15 +3739,7 @@ "title": "Ghost Book", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53751895, - "modified_timestamp": "2023-01-11T12:49:31+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 38.341, - "bitrate_kbps": 11215 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Ghost.Book.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7102,32 +3748,16 @@ "title": "Ghost Book", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5868626979, - "modified_timestamp": "2023-01-11T12:52:39+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6776.779, - "bitrate_kbps": 6927 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4", "filename": "[HYSUB]Omoi, Omoware, Furi, Furare[BIG5_MP4][1920X1080].mp4", "category": "movie", - "title": "Omoi, Omoware, Furi, Furare", + "title": "Omoi, Omoware, Furi, Furare[BIG5 MP4]", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1434300450, - "modified_timestamp": "2021-04-27T09:16:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6173.12, - "bitrate_kbps": 1858 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/Teenage.Mutant.Ninja.Turtles.Mutant.Mayhem.2023.RERiP.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Teenage.Mutant.Ninja.Turtles.Mutant.Mayhem.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -7136,15 +3766,7 @@ "title": "Teenage Mutant Ninja Turtles Mutant Mayhem", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8933733217, - "modified_timestamp": "2023-11-18T12:13:20+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5960.0, - "bitrate_kbps": 11991 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Killers.of.the.Flower.Moon.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Killers.Of.the.Flower.Moon.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7153,15 +3775,7 @@ "title": "Killers Of the Flower Moon", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12884005571, - "modified_timestamp": "2024-01-23T04:54:43+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 12347.417, - "bitrate_kbps": 8347 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Valet.2022.2160p.DSNP.WEB-DL.DDP5.1.HDR.HEVC-CMRG.mkv", @@ -7170,15 +3784,7 @@ "title": "The Valet", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15215611471, - "modified_timestamp": "2023-01-19T11:18:14+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 7371.552, - "bitrate_kbps": 16512 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi/The.Creator.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7187,15 +3793,7 @@ "title": "The Creator", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8530568640, - "modified_timestamp": "2023-12-09T01:52:39+00:00", - "resolution": "1920x696", - "codec": "hevc", - "duration_seconds": 8009.846, - "bitrate_kbps": 8520 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.mkv", @@ -7204,15 +3802,7 @@ "title": "Deliver Us from Evil", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5192163313, - "modified_timestamp": "2021-02-04T14:23:59+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6492.096, - "bitrate_kbps": 6398 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi/Sample/Deliver.Us.from.Evil.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -7221,15 +3811,7 @@ "title": "Deliver Us from Evil", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 82986386, - "modified_timestamp": "2021-02-04T14:21:25+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 61.444, - "bitrate_kbps": 10804 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Nothing Serious 2021.mp4", @@ -7238,15 +3820,7 @@ "title": "Nothing Serious", "year": 2021, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 9339599975, - "modified_timestamp": "2022-11-17T16:34:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7500.277811, - "bitrate_kbps": 9961 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Demolition.2015.720p.BluRay.x264-WiKi.mkv", @@ -7255,15 +3829,7 @@ "title": "Demolition", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4079111807, - "modified_timestamp": "2020-08-30T05:31:40+00:00", - "resolution": "1280x542", - "codec": "h264", - "duration_seconds": 6029.28, - "bitrate_kbps": 5412 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Demolition.2015.720p.BluRay.x264-WiKi/Sample/Demolition.2015.720p.BluRay.x264-WiKi.sample.mkv", @@ -7272,15 +3838,7 @@ "title": "Demolition", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54432811, - "modified_timestamp": "2020-08-30T05:17:10+00:00", - "resolution": "1280x542", - "codec": "h264", - "duration_seconds": 79.197, - "bitrate_kbps": 5498 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Grand.Maison.Paris.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7289,15 +3847,7 @@ "title": "Grand Maison Paris", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862436239, - "modified_timestamp": "2025-10-07T10:31:34+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 7034.038, - "bitrate_kbps": 6667 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Empire.Of.Lust.2014.720p.Uncut.HDRip.H264-Ental.mp4", @@ -7306,15 +3856,7 @@ "title": "Empire Of Lust", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2046513297, - "modified_timestamp": "2022-10-27T10:27:55+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 7476.546848, - "bitrate_kbps": 2189 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -7323,15 +3865,7 @@ "title": "Crayon Shinchan The Tornado Legend of Ninja Mononoke", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3762992150, - "modified_timestamp": "2023-01-13T14:33:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5972.992, - "bitrate_kbps": 5040 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Crayon.Shinchan.The.Tornado.Legend.of.Ninja.Mononoke.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", @@ -7340,15 +3874,7 @@ "title": "Crayon Shinchan The Tornado Legend of Ninja Mononoke", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53756144, - "modified_timestamp": "2023-01-13T14:33:07+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 47.275, - "bitrate_kbps": 9096 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Shin.Ultraman.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7357,15 +3883,7 @@ "title": "Shin Ultraman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5374410054, - "modified_timestamp": "2023-04-13T16:29:53+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6730.731, - "bitrate_kbps": 6387 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crimes.of.the.Future.2022.2160p.WEB-DL.DDP5.1.HDR.H.265-FLUX.mkv", @@ -7374,15 +3892,7 @@ "title": "Crimes of the Future", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12019879367, - "modified_timestamp": "2022-06-26T14:53:07+00:00", - "resolution": "3836x2072", - "codec": "hevc", - "duration_seconds": 6454.698, - "bitrate_kbps": 14897 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Proposal.2009.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai/The.Proposal.2009.BluRay.1080p.DTS-HD.MA5.1.x265.10bit-BeiTai.mkv", @@ -7391,15 +3901,7 @@ "title": "The Proposal", "year": 2009, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11858601470, - "modified_timestamp": "2026-02-08T09:45:10+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6467.52, - "bitrate_kbps": 14668 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Super.Mario.Bros.Movie.2023.1080p.MA.WEB-DL.DDP5.1.Atmos.H.264-CMaRioG.mkv", @@ -7408,15 +3910,7 @@ "title": "The Super Mario Bros Movie", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5983840193, - "modified_timestamp": "2023-05-21T11:40:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5545.916, - "bitrate_kbps": 8631 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.mkv", @@ -7425,15 +3919,7 @@ "title": "Portrait of a Beauty", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5948725511, - "modified_timestamp": "2021-12-10T17:33:50+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 6529.312, - "bitrate_kbps": 7288 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi/Sample/Portrait.of.a.Beauty.2008.720p.BluRay.x264-WiKi.Sample.mkv", @@ -7442,15 +3928,7 @@ "title": "Portrait of a Beauty", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 62551048, - "modified_timestamp": "2021-12-10T17:33:46+00:00", - "resolution": "1280x688", - "codec": "h264", - "duration_seconds": 69.18, - "bitrate_kbps": 7233 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.mkv", @@ -7459,15 +3937,7 @@ "title": "Made in Abyss Journey's Dawn", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3762024435, - "modified_timestamp": "2021-06-10T09:01:47+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 7122.144, - "bitrate_kbps": 4225 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi/Sample/Made.in.Abyss.Journey's.Dawn.2019.720p.BluRay.x264-WiKi.sample.mkv", @@ -7476,15 +3946,7 @@ "title": "Made in Abyss Journey's Dawn", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53929397, - "modified_timestamp": "2021-06-10T09:01:38+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 96.665, - "bitrate_kbps": 4463 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi/One.Battle.After.Another.2025.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -7493,15 +3955,7 @@ "title": "One Battle After Another", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10731990234, - "modified_timestamp": "2026-01-24T13:10:37+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 9703.84, - "bitrate_kbps": 8847 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Indiana.Jones.and.the.Dial.of.Destiny.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Indiana.Jones.and.the.Dial.of.Destiny.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7510,15 +3964,7 @@ "title": "Indiana Jones and the Dial of Destiny", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11180562211, - "modified_timestamp": "2023-11-23T12:31:45+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 9268.952, - "bitrate_kbps": 9649 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Operation.Mincemeat.2021.1080p.NF.WEB-DL.DDP5.1.HDR.H265-HAMR.mkv", @@ -7527,15 +3973,7 @@ "title": "Operation Mincemeat", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4124425885, - "modified_timestamp": "2022-05-14T12:25:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 7656.224, - "bitrate_kbps": 4309 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Anora.2024.1080p.BluRay.x265.10bit.DTS-HD.MA.5.1-WiKi/Anora.2024.1080p.BluRay.x265.10bit.DTS-HD.MA.5.1-WiKi.mkv", @@ -7544,15 +3982,7 @@ "title": "Anora", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13737459820, - "modified_timestamp": "2025-03-16T08:36:43+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8327.008, - "bitrate_kbps": 13197 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -7561,15 +3991,7 @@ "title": "The Unbearable Weight of Massive Talent", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 62721598, - "modified_timestamp": "2022-06-20T13:55:41+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 62.006, - "bitrate_kbps": 8092 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi/The.Unbearable.Weight.of.Massive.Talent.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -7578,15 +4000,7 @@ "title": "The Unbearable Weight of Massive Talent", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6510753986, - "modified_timestamp": "2022-06-20T13:55:57+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6411.447, - "bitrate_kbps": 8123 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Sample/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -7595,15 +4009,7 @@ "title": "Tonkatsu DJ Agetaro", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 60026335, - "modified_timestamp": "2021-04-21T10:33:23+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 67.159, - "bitrate_kbps": 7150 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi/Tonkatsu.DJ.Agetaro.2020.720p.BluRay.x264.DTS-WiKi.mkv", @@ -7612,32 +4018,16 @@ "title": "Tonkatsu DJ Agetaro", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4297962521, - "modified_timestamp": "2021-04-21T10:39:37+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6021.771, - "bitrate_kbps": 5709 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][中英外挂][FLAC][MKV]/[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv", "filename": "[DBD-Raws][4K_HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][2160P][BDRip][HEVC-10bit][FLAC].mkv", "category": "movie", - "title": "[蝙蝠侠:黑暗骑士崛起][][]", + "title": "[4K HDR][蝙蝠侠:黑暗骑士崛起][IMAX版][][][-]", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 12366119261, - "modified_timestamp": "2023-02-13T15:06:02+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 9872.288, - "bitrate_kbps": 10020 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -7646,15 +4036,7 @@ "title": "Ghostbusters Afterlife", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14470804762, - "modified_timestamp": "2022-02-02T06:12:33+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 7436.438, - "bitrate_kbps": 15567 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ghostbusters.Afterlife.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -7663,15 +4045,7 @@ "title": "Ghostbusters Afterlife", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 134395912, - "modified_timestamp": "2022-02-02T06:12:12+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 68.027, - "bitrate_kbps": 15805 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/当男人恋爱时.2021.1080p.闽南语.简繁中字£CMCT利姆鲁/[当男人恋爱时].Man.in.Love.2021.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -7680,15 +4054,7 @@ "title": "Man in Love", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10739322967, - "modified_timestamp": "2022-11-16T15:13:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6898.155, - "bitrate_kbps": 12454 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wake.Up.Dead.Man.A.Knives.Out.Mystery.2025.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -7697,15 +4063,7 @@ "title": "Wake Up Dead Man A Knives Out Mystery", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9153790604, - "modified_timestamp": "2025-12-23T05:15:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 8775.625, - "bitrate_kbps": 8344 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Wandering.Earth.2.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi/The.Wandering.Earth.2.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -7714,15 +4072,7 @@ "title": "The Wandering Earth 2", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11478563751, - "modified_timestamp": "2024-02-22T09:35:14+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 10391.467, - "bitrate_kbps": 8836 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/穆赫兰道.2001.CC.1080p.中英字幕£CMCT风潇潇/[穆赫兰道].Mulholland.Dr.2001.CC.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -7731,15 +4081,7 @@ "title": "Mulholland Dr", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15028277738, - "modified_timestamp": "2024-06-26T15:47:45+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 8833.494, - "bitrate_kbps": 13610 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Honest.Thief.2020.720p.BluRay.x264-WiKi.mkv", @@ -7748,15 +4090,7 @@ "title": "Honest Thief", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4163275654, - "modified_timestamp": "2021-01-01T15:37:44+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 5912.096, - "bitrate_kbps": 5633 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Honest.Thief.2020.720p.BluRay.x264-WiKi/Sample/Honest.Thief.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -7765,15 +4099,7 @@ "title": "Honest Thief", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 74264631, - "modified_timestamp": "2021-01-01T15:29:30+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 62.009, - "bitrate_kbps": 9581 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dont.Look.Up.2021.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-MZABI.mkv", @@ -7782,15 +4108,7 @@ "title": "Dont Look Up", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6666343530, - "modified_timestamp": "2022-01-09T11:36:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 8591.488, - "bitrate_kbps": 6207 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/The.Master.Plan.2021.720p.BluRay.x264-WiKi.mkv", @@ -7799,15 +4117,7 @@ "title": "The Master Plan", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4295130191, - "modified_timestamp": "2021-07-08T14:38:13+00:00", - "resolution": "1280x640", - "codec": "h264", - "duration_seconds": 6052.192, - "bitrate_kbps": 5677 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Master.Plan.2021.720p.BluRay.x264-WiKi/Sample/The.Master.Plan.2021.720p.BluRay.x264-WiKi.sample.mkv", @@ -7816,15 +4126,7 @@ "title": "The Master Plan", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 52790574, - "modified_timestamp": "2021-07-08T14:31:31+00:00", - "resolution": "1280x640", - "codec": "h264", - "duration_seconds": 68.286, - "bitrate_kbps": 6184 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Transformers.One.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Transformers.One.2024.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -7833,15 +4135,7 @@ "title": "Transformers One", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10246573446, - "modified_timestamp": "2024-12-17T08:56:05+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6242.432, - "bitrate_kbps": 13131 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.mkv", @@ -7850,15 +4144,7 @@ "title": "The Northman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12871261063, - "modified_timestamp": "2022-08-07T03:32:37+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 8213.568, - "bitrate_kbps": 12536 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi/Sample/The.Northman.2022.RERiP.1080p.BluRay.x264-WiKi.Sample.mkv", @@ -7867,15 +4153,7 @@ "title": "The Northman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 82692182, - "modified_timestamp": "2022-08-07T03:23:51+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 70.53, - "bitrate_kbps": 9379 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dragon Fight 1989 NF WEB-DL 1080p H.264 AAC & DD 2.0 2Audios-Dave.mkv", @@ -7884,15 +4162,7 @@ "title": "Dragon Fight", "year": 1989, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 3734665360, - "modified_timestamp": "2021-03-21T04:16:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5842.794, - "bitrate_kbps": 5113 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Tomorrow.War.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-CMRG/The.Tomorrow.War.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-CMRG.mkv", @@ -7901,15 +4171,7 @@ "title": "The Tomorrow War", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8957224264, - "modified_timestamp": "2021-07-09T02:30:31+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 8286.208, - "bitrate_kbps": 8647 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Jacky.Cheung.A.Classic.Tour.Live.in.Taipei.2016.BluRay.1080p.DTS-HD.MA.5.1.Flac.x265.10bit-BeiTai/Jacky.Cheung.A.Classic.Tour.Live.in.Taipei.2016.BluRay.1080p.DTS-HD.MA.5.1.Flac.x265.10bit-BeiTai.mkv", @@ -7918,15 +4180,7 @@ "title": "Jacky Cheung A Classic Tour Live in Taipei", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 24814454594, - "modified_timestamp": "2021-12-30T06:47:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 10333.835, - "bitrate_kbps": 19210 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Innocent.Witness.2019.720p.BluRay.x264-WiKi.mkv", @@ -7935,15 +4189,7 @@ "title": "Innocent Witness", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5504595016, - "modified_timestamp": "2020-09-19T01:49:07+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7753.152, - "bitrate_kbps": 5679 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Innocent.Witness.2019.720p.BluRay.x264-WiKi/Sample/Innocent.Witness.2019.720p.BluRay.x264-WiKi.Sample.mkv", @@ -7952,15 +4198,7 @@ "title": "Innocent Witness", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 73260017, - "modified_timestamp": "2020-09-19T01:44:37+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 60.549, - "bitrate_kbps": 9679 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -7969,15 +4207,7 @@ "title": "Fallen Angels", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14930201476, - "modified_timestamp": "2023-10-03T06:15:55+00:00", - "resolution": "1920x1064", - "codec": "h264", - "duration_seconds": 5928.928, - "bitrate_kbps": 20145 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi/Sample/Fallen.Angels.1995.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -7986,15 +4216,7 @@ "title": "Fallen Angels", "year": 1995, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105600699, - "modified_timestamp": "2023-10-03T06:15:16+00:00", - "resolution": "1920x1064", - "codec": "h264", - "duration_seconds": 41.59, - "bitrate_kbps": 20312 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Gran.Turismo.2023.REPACK.2160p.MA.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", @@ -8003,15 +4225,7 @@ "title": "Gran Turismo", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 25421039398, - "modified_timestamp": "2023-10-05T08:51:13+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 8055.589, - "bitrate_kbps": 25245 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.mkv", @@ -8020,15 +4234,7 @@ "title": "The Cell", "year": 2000, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6976327725, - "modified_timestamp": "2025-01-15T13:12:59+00:00", - "resolution": "1280x534", - "codec": "h264", - "duration_seconds": 6430.262, - "bitrate_kbps": 8679 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Cell.2000.720p.BluRay.x264.DTS-WiKi/Sample/The.Cell.2000.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8037,15 +4243,7 @@ "title": "The Cell", "year": 2000, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53765108, - "modified_timestamp": "2025-01-15T13:09:27+00:00", - "resolution": "1280x534", - "codec": "h264", - "duration_seconds": 45.087, - "bitrate_kbps": 9539 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Flight.Risk.2025.1080p.AMZN.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -8054,15 +4252,7 @@ "title": "Flight Risk", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6825601753, - "modified_timestamp": "2025-02-16T14:11:31+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 5479.744, - "bitrate_kbps": 9964 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Twilight.of.the.Warriors.Walled.In.2024.1080p.BluRay.x265.10bit-WiKi/Twilight.of.the.Warriors.Walled.In.2024.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -8071,15 +4261,7 @@ "title": "Twilight of the Warriors Walled In", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8541016669, - "modified_timestamp": "2025-10-04T07:37:36+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7503.36, - "bitrate_kbps": 9106 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Extraction 2 2023 2160p NF WEB-DL DDP5.1 Atmos DV HDR H 265-FLUX/Extraction.2.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.DV.HDR.H.265-FLUX.mkv", @@ -8088,15 +4270,7 @@ "title": "Extraction 2", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 18352334984, - "modified_timestamp": "2023-06-28T13:02:01+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 7437.625, - "bitrate_kbps": 19739 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8105,15 +4279,7 @@ "title": "The Killer", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9714710171, - "modified_timestamp": "2022-12-06T08:39:08+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 5722.24, - "bitrate_kbps": 13581 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi/Sample/The.Killer.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8122,15 +4288,7 @@ "title": "The Killer", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 214886339, - "modified_timestamp": "2022-12-06T08:34:57+00:00", - "resolution": "1920x802", - "codec": "h264", - "duration_seconds": 64.208, - "bitrate_kbps": 26773 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My.Wife.Got.Married.2008.1080p.NF.WEB-DL.DD+5.1.H.264-ARiN.mkv", @@ -8139,15 +4297,7 @@ "title": "My Wife Got Married", "year": 2008, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4515014871, - "modified_timestamp": "2020-04-04T09:07:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7145.504, - "bitrate_kbps": 5054 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Coda.2021.1080p.APTV.WEB-DL.DDP5.1.Atmos.x264-CMRG/Coda.2021.1080p.APTV.WEB-DL.DDP5.1.Atmos.x264-CMRG.mkv", @@ -8156,15 +4306,7 @@ "title": "Coda", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9090124368, - "modified_timestamp": "2022-01-20T12:37:30+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 6704.8, - "bitrate_kbps": 10846 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Tron.Ares.2025.Hybrid.1080p.BluRay.DDP7.1.x264-ZoroSenpai.mkv", @@ -8173,15 +4315,7 @@ "title": "Tron Ares", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 17461688461, - "modified_timestamp": "2026-01-08T11:56:15+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7128.128, - "bitrate_kbps": 19597 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Swordfish.2001.2160p.BluRay.DoVi.x265.10bit.Atmos.DTS-HD.MA5.1-WiKi/Swordfish.2001.2160p.BluRay.DoVi.x265.10bit.Atmos.DTS-HD.MA5.1-WiKi.mkv", @@ -8190,15 +4324,7 @@ "title": "Swordfish", "year": 2001, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 34951509377, - "modified_timestamp": "2026-01-16T13:55:03+00:00", - "resolution": "3840x1604", - "codec": "hevc", - "duration_seconds": 5967.253, - "bitrate_kbps": 46857 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8207,15 +4333,7 @@ "title": "The Untold Tale of the Three Kingdoms", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10472171923, - "modified_timestamp": "2021-04-29T12:01:32+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 6829.824, - "bitrate_kbps": 12266 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Untold.Tale.of.the.Three.Kingdoms.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -8224,15 +4342,7 @@ "title": "The Untold Tale of the Three Kingdoms", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 113867758, - "modified_timestamp": "2021-04-29T11:52:46+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 48.777, - "bitrate_kbps": 18675 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ichikei's.Crow.The.Movie.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Ichikei's.Crow.The.Movie.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8241,15 +4351,7 @@ "title": "Ichikei's Crow The Movie", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5866319499, - "modified_timestamp": "2023-09-13T14:57:35+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7133.131, - "bitrate_kbps": 6579 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/Sample/The.Little.Things.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -8258,15 +4360,7 @@ "title": "The Little Things", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 92911089, - "modified_timestamp": "2021-05-01T14:07:33+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 62.952, - "bitrate_kbps": 11807 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Little.Things.2021.720p.BluRay.x264-WiKi/The.Little.Things.2021.720p.BluRay.x264-WiKi.mkv", @@ -8275,15 +4369,7 @@ "title": "The Little Things", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6084726036, - "modified_timestamp": "2021-05-01T14:14:51+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7669.952, - "bitrate_kbps": 6346 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi/Shylock's.Children.2023.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8292,15 +4378,7 @@ "title": "Shylock's Children", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11271832909, - "modified_timestamp": "2023-10-31T01:44:00+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7327.328, - "bitrate_kbps": 12306 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi/Oppenheimer.2023.IMAX.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8309,15 +4387,7 @@ "title": "Oppenheimer", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12380365830, - "modified_timestamp": "2023-11-10T02:01:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 10822.155, - "bitrate_kbps": 9151 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -8326,15 +4396,7 @@ "title": "99 9 Criminal Lawyer The Movie", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 53407652, - "modified_timestamp": "2022-06-13T00:59:25+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 66.2, - "bitrate_kbps": 6454 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi/99.9.Criminal.Lawyer.The.Movie.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8343,15 +4405,7 @@ "title": "99 9 Criminal Lawyer The Movie", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5861794714, - "modified_timestamp": "2022-06-13T01:01:21+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 7203.196, - "bitrate_kbps": 6510 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/行运超人.国粤双语.My.Lucky.Star.2003.WEB-DL.4k.H265.2Audio.AAC-PTHweb.mkv", @@ -8360,15 +4414,7 @@ "title": "行运超人 国粤双语 My Lucky Star", "year": 2003, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4169500063, - "modified_timestamp": "2021-02-20T08:31:36+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 5931.746, - "bitrate_kbps": 5623 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Lesson.in.Murder.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8377,15 +4423,7 @@ "title": "Lesson in Murder", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5863412260, - "modified_timestamp": "2023-02-09T04:38:22+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7743.744, - "bitrate_kbps": 6057 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sample/Sausalito.2000.720p.BluRay.x264-WiKi.sample.mkv", @@ -8394,15 +4432,7 @@ "title": "Sausalito", "year": 2000, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 59102003, - "modified_timestamp": "2020-02-17T11:44:37+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 56.363, - "bitrate_kbps": 8388 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sausalito.2000.720p.BluRay.x264-WiKi/Sausalito.2000.720p.BluRay.x264-WiKi.mkv", @@ -8411,15 +4441,7 @@ "title": "Sausalito", "year": 2000, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6122703537, - "modified_timestamp": "2020-02-17T11:58:58+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5860.256, - "bitrate_kbps": 8358 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Eternal.Sunshine.of.the.Spotless.Mind.2004.Repack.BluRay.1080p.DTS-HD.MA5.1.x264-beAst/Eternal.Sunshine.of.the.Spotless.Mind.2004.Repack.BluRay.1080p.DTS-HD.MA5.1.x264-beAst.mkv", @@ -8428,15 +4450,7 @@ "title": "Eternal Sunshine of the Spotless Mind", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15066888004, - "modified_timestamp": "2024-03-03T04:12:17+00:00", - "resolution": "1920x1040", - "codec": "h264", - "duration_seconds": 6468.736, - "bitrate_kbps": 18633 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP 1080p HDTV x264 AAC.mkv", @@ -8445,15 +4459,7 @@ "title": "土曜プレミアム・イチケイのカラス 映画公開記念スペシャルドラマ SP", "year": null, "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5035904436, - "modified_timestamp": "2023-01-24T15:17:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6324.394, - "bitrate_kbps": 6370 - } + "needs_review": true }, { "path": "/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.mkv", @@ -8462,15 +4468,7 @@ "title": "108 Revenge and Adventure of Goro Kaiba", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4073722789, - "modified_timestamp": "2020-08-02T05:33:03+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6081.088, - "bitrate_kbps": 5359 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/108.Reveng.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi/Sample/108.Revenge.and.Adventure.of.Goro.Kaiba.2019.720p.BluRay.x264-WiKi.sample.mkv", @@ -8479,15 +4477,7 @@ "title": "108 Revenge and Adventure of Goro Kaiba", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 56362475, - "modified_timestamp": "2020-08-02T05:28:09+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 86.39, - "bitrate_kbps": 5219 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -8496,15 +4486,7 @@ "title": "Ura Aka L'Aventure", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 110079745, - "modified_timestamp": "2021-09-18T08:22:08+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 68.386, - "bitrate_kbps": 12877 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi/Ura.Aka.L'Aventure.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8513,15 +4495,7 @@ "title": "Ura Aka L'Aventure", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9659434417, - "modified_timestamp": "2021-09-18T08:22:40+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 6102.518, - "bitrate_kbps": 12662 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Soul.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8530,15 +4504,7 @@ "title": "Soul", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13124053237, - "modified_timestamp": "2021-04-17T11:21:40+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6032.971, - "bitrate_kbps": 17403 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Soul.2020.1080p.BluRay.x264.DTS-WiKi/Sample/Soul.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8547,15 +4513,7 @@ "title": "Soul", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 158643887, - "modified_timestamp": "2021-04-17T11:09:13+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 63.33, - "bitrate_kbps": 20040 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/罪恶六芒星-美色狩猎者.Star.of.David-Hunting.for.Beautiful.Girls.1979.BluRay.1080p.x265.10bit.FLAC-fnscar.mkv", @@ -8564,15 +4522,7 @@ "title": "罪恶六芒星-美色狩猎者 Star of David-Hunting for Beautiful Girls", "year": 1979, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4321417912, - "modified_timestamp": "2021-10-12T03:11:10+00:00", - "resolution": "1920x782", - "codec": "hevc", - "duration_seconds": 6003.706, - "bitrate_kbps": 5758 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi/The.Goldfinger.2023.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -8581,15 +4531,7 @@ "title": "The Goldfinger", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8537956472, - "modified_timestamp": "2024-06-04T00:52:03+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7557.024, - "bitrate_kbps": 9038 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Black.Bag.2025.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -8598,15 +4540,7 @@ "title": "Black Bag", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7889853460, - "modified_timestamp": "2025-05-29T08:34:20+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5604.608, - "bitrate_kbps": 11261 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/芭蕾复仇曲.Ballerina.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/Ballerina.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -8615,15 +4549,7 @@ "title": "Ballerina", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5567783391, - "modified_timestamp": "2023-10-10T11:21:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5627.539, - "bitrate_kbps": 7915 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi/The.New.King.of.Comedy.2019.1080p.BluRay.x264-WiKi.mkv", @@ -8632,15 +4558,7 @@ "title": "The New King of Comedy", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11374399439, - "modified_timestamp": "2024-02-22T05:15:11+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5404.032, - "bitrate_kbps": 16838 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Godzilla.x.Kong.The.New.Empire.2024.2160p.WEB-DL.DDP5.1.HDR10+.H.265-POKE/Godzilla.x.Kong.The.New.Empire.2024.HDR.2160P.WEB.H265-POKE.mkv", @@ -8649,15 +4567,7 @@ "title": "Godzilla x Kong The New Empire", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 17697452028, - "modified_timestamp": "2024-05-26T06:36:20+00:00", - "resolution": "3840x1600", - "codec": "hevc", - "duration_seconds": 6932.032, - "bitrate_kbps": 20423 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thor.Love.and.Thunder.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG/Thor.Love.and.Thunder.2022.2160p.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv", @@ -8666,15 +4576,7 @@ "title": "Thor Love and Thunder", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 21915543992, - "modified_timestamp": "2022-09-08T11:49:02+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 7133.71, - "bitrate_kbps": 24576 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS/Headhunters 2011 BluRay 1080p DTS-HD MA5.1 x264-HDS.mkv", @@ -8683,15 +4585,7 @@ "title": "Headhunters", "year": 2011, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 13163711571, - "modified_timestamp": "2022-02-07T08:46:16+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6006.016, - "bitrate_kbps": 17534 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Menu.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8700,15 +4594,7 @@ "title": "The Menu", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7470554790, - "modified_timestamp": "2023-01-17T15:03:38+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 6428.427, - "bitrate_kbps": 9296 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/1秒先の彼 2023 1080p HDTV x264 AAC5.1.mkv", @@ -8717,15 +4603,7 @@ "title": "1秒先の彼", "year": 2023, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 7071401538, - "modified_timestamp": "2024-02-17T00:57:07+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 7178.724, - "bitrate_kbps": 7880 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Bandit.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8734,15 +4612,7 @@ "title": "Bandit", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10441570529, - "modified_timestamp": "2023-02-20T13:41:56+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7554.631, - "bitrate_kbps": 11057 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Wu.Kong.2017.1080p.BluRay.x264-WiKi.mkv", @@ -8751,15 +4621,7 @@ "title": "Wu Kong", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12852786112, - "modified_timestamp": "2024-09-01T15:13:51+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7391.625, - "bitrate_kbps": 13910 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Wu.Kong.2017.1080p.BluRay.x264-WiKi/Sample/Wu.Kong.2017.1080p.BluRay.x264-WiKi.sample.mkv", @@ -8768,15 +4630,7 @@ "title": "Wu Kong", "year": 2017, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 117737019, - "modified_timestamp": "2024-09-01T15:13:44+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 42.045, - "bitrate_kbps": 22402 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Perfect.Days.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8785,15 +4639,7 @@ "title": "Perfect Days", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7050852922, - "modified_timestamp": "2024-08-15T09:05:06+00:00", - "resolution": "1440x1080", - "codec": "hevc", - "duration_seconds": 7480.491, - "bitrate_kbps": 7540 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8802,15 +4648,7 @@ "title": "The Program", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10821256675, - "modified_timestamp": "2020-03-14T17:37:23+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6185.216, - "bitrate_kbps": 13996 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Program.2015.1080p.BluRay.x264.DTS-WiKi/Sample/The.Program.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8819,15 +4657,7 @@ "title": "The Program", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105262520, - "modified_timestamp": "2020-03-14T16:25:08+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 50.843, - "bitrate_kbps": 16562 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/Sample/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8836,15 +4666,7 @@ "title": "McFarland USA", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105786971, - "modified_timestamp": "2024-01-06T00:37:46+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 52.561, - "bitrate_kbps": 16101 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi/McFarland.USA.2015.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8853,15 +4675,7 @@ "title": "McFarland USA", "year": 2015, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15582488662, - "modified_timestamp": "2024-01-06T01:14:28+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7744.8, - "bitrate_kbps": 16095 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/[手遮天].The.Butcher's.Blade.2026.2160p.WEB-DL.120Fps.H265.10bit.AAC-UBWEB.mp4", @@ -8870,15 +4684,7 @@ "title": "The Butcher's Blade", "year": 2026, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3300362223, - "modified_timestamp": "2026-01-11T04:03:19+00:00", - "resolution": "3840x1616", - "codec": "hevc", - "duration_seconds": 5418.794354, - "bitrate_kbps": 4872 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -8887,15 +4693,7 @@ "title": "Free Guy", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 154728812, - "modified_timestamp": "2021-09-24T12:52:11+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 61.854, - "bitrate_kbps": 20012 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi/Free.Guy.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -8904,15 +4702,7 @@ "title": "Free Guy", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13425322977, - "modified_timestamp": "2021-09-24T12:52:33+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6898.603, - "bitrate_kbps": 15568 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -8921,15 +4711,7 @@ "title": "Obsessed", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 171151332, - "modified_timestamp": "2022-12-11T00:06:41+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 63.267, - "bitrate_kbps": 21641 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi/Obsessed.2014.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -8938,15 +4720,7 @@ "title": "Obsessed", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9357675852, - "modified_timestamp": "2022-12-11T00:11:46+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 7971.606, - "bitrate_kbps": 9391 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Creation.of.the.Gods.I.Kingdom.of.Storms.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/Creation.of.the.Gods.I.Kingdom.of.Storms.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -8955,15 +4729,7 @@ "title": "Creation of the Gods I Kingdom of Storms", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13022576430, - "modified_timestamp": "2024-02-17T00:53:42+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 8899.936, - "bitrate_kbps": 11705 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Barbie.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -8972,15 +4738,7 @@ "title": "Barbie", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10061626242, - "modified_timestamp": "2023-10-15T02:29:17+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 6843.84, - "bitrate_kbps": 11761 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The Wave 2019 1080p BluRay DD5.1 x264-BdC.mkv", @@ -8989,15 +4747,7 @@ "title": "The Wave", "year": 2019, "confidence": 0.7, - "needs_review": false, - "video_metadata": { - "size_bytes": 8656760268, - "modified_timestamp": "2021-01-17T09:45:08+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5247.328, - "bitrate_kbps": 13197 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9006,15 +4756,7 @@ "title": "In the Wake", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11813266647, - "modified_timestamp": "2022-04-28T01:29:18+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 8088.0, - "bitrate_kbps": 11684 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi/Sample/In.the.Wake.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -9023,15 +4765,7 @@ "title": "In the Wake", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 105889792, - "modified_timestamp": "2022-04-28T01:06:55+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 71.331, - "bitrate_kbps": 11875 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Muroi.Shinji.Stay.Alive.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Muroi.Shinji.Stay.Alive.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9040,15 +4774,7 @@ "title": "Muroi Shinji Stay Alive", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5866583681, - "modified_timestamp": "2025-12-30T15:35:11+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 6990.369, - "bitrate_kbps": 6713 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/Sample/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -9057,15 +4783,7 @@ "title": "The Hitman's Wife's Bodyguard", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 61635822, - "modified_timestamp": "2021-08-17T12:26:23+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 63.361, - "bitrate_kbps": 7782 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi/The.Hitman's.Wife's.Bodyguard.2021.720p.BluRay.x264-WiKi.mkv", @@ -9074,15 +4792,7 @@ "title": "The Hitman's Wife's Bodyguard", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4676505262, - "modified_timestamp": "2021-08-17T12:34:04+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 5982.048, - "bitrate_kbps": 6254 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9091,15 +4801,7 @@ "title": "Midnight in Paris", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10009640835, - "modified_timestamp": "2020-02-01T04:52:45+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 5657.632, - "bitrate_kbps": 14153 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi/Sample/Midnight.in.Paris.2011.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -9108,15 +4810,7 @@ "title": "Midnight in Paris", "year": 2011, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 149871188, - "modified_timestamp": "2020-02-01T04:40:11+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 63.855, - "bitrate_kbps": 18776 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Operation.Fortune.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9125,15 +4819,7 @@ "title": "Operation Fortune", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7839279577, - "modified_timestamp": "2023-04-03T12:27:06+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6830.07, - "bitrate_kbps": 9182 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -9142,15 +4828,7 @@ "title": "Boite noire", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 56051573, - "modified_timestamp": "2022-05-26T02:03:55+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 63.202, - "bitrate_kbps": 7094 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi/Boite.noire.2021.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9159,15 +4837,7 @@ "title": "Boite noire", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6918655638, - "modified_timestamp": "2022-05-26T02:04:05+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 7783.755, - "bitrate_kbps": 7110 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9176,15 +4846,7 @@ "title": "Be with You", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 17725390408, - "modified_timestamp": "2020-09-27T12:02:33+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7131.333, - "bitrate_kbps": 19884 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi/Sample/Be.with.You.2004.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -9193,15 +4855,7 @@ "title": "Be with You", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 113196446, - "modified_timestamp": "2020-09-27T12:02:13+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 55.193, - "bitrate_kbps": 16407 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Confidential.Assignment.2.International.2022.1080p.WEB-DL.AAC2.0.H.264-tG1R0.mkv", @@ -9210,15 +4864,7 @@ "title": "Confidential Assignment 2 International", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7825376949, - "modified_timestamp": "2022-11-01T11:07:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7700.693, - "bitrate_kbps": 8129 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/警察局.Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS/Copshop.2021.UHD.BluRay.2160p.x265.10bit.HDR.mUHD-FRDS.mkv", @@ -9227,15 +4873,7 @@ "title": "Copshop", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 19908675180, - "modified_timestamp": "2022-03-02T12:31:45+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 6442.019, - "bitrate_kbps": 24723 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E01.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9244,15 +4882,7 @@ "title": "Love Death&Robots S02E01", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 337401177, - "modified_timestamp": "2021-05-14T10:59:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 756.736, - "bitrate_kbps": 3566 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E03.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9261,15 +4891,7 @@ "title": "Love Death&Robots S02E03", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 823204736, - "modified_timestamp": "2021-05-14T10:59:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1108.8, - "bitrate_kbps": 5939 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E02.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9278,15 +4900,7 @@ "title": "Love Death&Robots S02E02", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 375228290, - "modified_timestamp": "2021-05-14T10:59:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 780.736, - "bitrate_kbps": 3844 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E05.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9295,15 +4909,7 @@ "title": "Love Death&Robots S02E05", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 218399647, - "modified_timestamp": "2021-05-14T10:59:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 688.768, - "bitrate_kbps": 2536 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E04.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9312,15 +4918,7 @@ "title": "Love Death&Robots S02E04", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 663436981, - "modified_timestamp": "2021-05-14T10:59:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1084.768, - "bitrate_kbps": 4892 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E07.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9329,15 +4927,7 @@ "title": "Love Death&Robots S02E07", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 440423100, - "modified_timestamp": "2021-05-14T10:58:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 812.768, - "bitrate_kbps": 4335 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E06.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9346,15 +4936,7 @@ "title": "Love Death&Robots S02E06", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 387169556, - "modified_timestamp": "2021-05-14T10:58:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 812.459, - "bitrate_kbps": 3812 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Love.Death&Robots.S02.1080p.WEB-DL.DD+5.1.x264-cfandora/Love.Death&Robots.S02E08.1080p.WEB-DL.DD+5.1.x264-cfandora.mkv", @@ -9363,15 +4945,7 @@ "title": "Love Death&Robots S02E08", "year": 1080, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 697274099, - "modified_timestamp": "2021-05-14T10:59:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 834.784, - "bitrate_kbps": 6682 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Step.2020.720p.BluRay.x264-WiKi.mkv", @@ -9380,15 +4954,7 @@ "title": "Step", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4694142958, - "modified_timestamp": "2021-03-23T02:35:11+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 7125.12, - "bitrate_kbps": 5270 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Step.2020.720p.BluRay.x264-WiKi/Sample/Step.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -9397,15 +4963,7 @@ "title": "Step", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57958412, - "modified_timestamp": "2021-03-23T02:35:08+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 83.676, - "bitrate_kbps": 5541 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON/Eternals.2021.1080p.WEBRip.DDP5.1.Atmos.x264-PRGON.mkv", @@ -9414,15 +4972,7 @@ "title": "Eternals", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12506930989, - "modified_timestamp": "2022-01-12T11:22:30+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 9376.284, - "bitrate_kbps": 10671 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9431,15 +4981,7 @@ "title": "Gura Gura", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7045613863, - "modified_timestamp": "2021-03-18T02:33:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4731.766, - "bitrate_kbps": 11912 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Gura.Gura.2019.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -9448,15 +4990,7 @@ "title": "Gura Gura", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 112597926, - "modified_timestamp": "2021-03-18T02:25:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 74.309, - "bitrate_kbps": 12122 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Jurassic.World.Rebirth.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Jurassic.World.Rebirth.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -9465,15 +4999,7 @@ "title": "Jurassic World Rebirth", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12167208273, - "modified_timestamp": "2025-09-07T09:08:01+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8020.032, - "bitrate_kbps": 12136 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Count.of.Monte-Cristo.2024.1080p.BluRay.x265.10bit.DTS-ADE/The.Count.of.Monte-Cristo.2024.1080p.BluRay.x265.10bit.DTS-ADE.mkv", @@ -9482,15 +5008,7 @@ "title": "The Count of Monte-Cristo", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12907452570, - "modified_timestamp": "2025-01-12T05:02:22+00:00", - "resolution": "1920x802", - "codec": "hevc", - "duration_seconds": 10668.209, - "bitrate_kbps": 9679 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9499,15 +5017,7 @@ "title": "The Hunt", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8410951986, - "modified_timestamp": "2025-07-28T11:56:04+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 5402.027, - "bitrate_kbps": 12455 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Hunt.2020.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -9516,15 +5026,7 @@ "title": "The Hunt", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 104895519, - "modified_timestamp": "2025-07-28T11:56:16+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 84.592, - "bitrate_kbps": 9920 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Ballerina.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -9533,15 +5035,7 @@ "title": "Ballerina", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10892616468, - "modified_timestamp": "2025-08-27T12:32:19+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7479.52, - "bitrate_kbps": 11650 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/News.of.the.World.2020.1080p.AMZN.WEB-DL.DDP5.1.H.264-EVO.mkv", @@ -9550,15 +5044,7 @@ "title": "News of the World", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7119215988, - "modified_timestamp": "2021-03-16T12:30:24+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 7099.104, - "bitrate_kbps": 8022 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.mkv", @@ -9567,15 +5053,7 @@ "title": "My Missing Valentine", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5212486223, - "modified_timestamp": "2020-12-30T15:01:18+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7143.04, - "bitrate_kbps": 5837 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi/Sample/My.Missing.Valentine.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -9584,15 +5062,7 @@ "title": "My Missing Valentine", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 52743917, - "modified_timestamp": "2020-12-30T14:55:01+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 67.726, - "bitrate_kbps": 6230 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/Sample/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -9601,15 +5071,7 @@ "title": "The Northman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54075740, - "modified_timestamp": "2022-06-02T02:59:27+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 70.488, - "bitrate_kbps": 6137 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi/The.Northman.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -9618,15 +5080,7 @@ "title": "The Northman", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6420699924, - "modified_timestamp": "2022-06-02T03:06:01+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 8213.568, - "bitrate_kbps": 6253 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Sample/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -9635,15 +5089,7 @@ "title": "Dirty Grandpa", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 154107990, - "modified_timestamp": "2020-08-16T03:07:43+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 60.905, - "bitrate_kbps": 20242 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi/Dirty.Grandpa.2016.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9652,15 +5098,7 @@ "title": "Dirty Grandpa", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 16095812379, - "modified_timestamp": "2020-08-16T03:08:17+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6574.61, - "bitrate_kbps": 19585 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Silent.Parade.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9669,15 +5107,7 @@ "title": "Silent Parade", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5867532007, - "modified_timestamp": "2023-05-01T13:38:00+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7790.784, - "bitrate_kbps": 6025 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/Sample/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.Sample.mkv", @@ -9686,15 +5116,7 @@ "title": "My Blueberry Nights", "year": 2007, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 57966344, - "modified_timestamp": "2021-01-23T04:18:08+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 79.959, - "bitrate_kbps": 5799 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi/My.Blueberry.Nights.2007.BluRay.720p.x264.DTS-WiKi.mkv", @@ -9703,15 +5125,7 @@ "title": "My Blueberry Nights", "year": 2007, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4696002520, - "modified_timestamp": "2021-01-23T04:29:58+00:00", - "resolution": "1280x544", - "codec": "h264", - "duration_seconds": 5703.123, - "bitrate_kbps": 6587 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Холоп.2019.WEB-DL.1080p.m4v", @@ -9720,15 +5134,7 @@ "title": "Холоп", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3974604932, - "modified_timestamp": "2021-05-27T06:13:35+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 6235.348333, - "bitrate_kbps": 5099 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Whisper.of.the.Heart.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Whisper.of.the.Heart.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9737,15 +5143,7 @@ "title": "Whisper of the Heart", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5444726290, - "modified_timestamp": "2024-06-27T05:05:35+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6887.883, - "bitrate_kbps": 6323 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Sample/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -9754,15 +5152,7 @@ "title": "Berserk The Golden Age Arc 2 The Battle for Doldrey", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 92964248, - "modified_timestamp": "2021-05-20T04:44:22+00:00", - "resolution": "1920x812", - "codec": "h264", - "duration_seconds": 60.936, - "bitrate_kbps": 12204 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi/Berserk.The.Golden.Age.Arc.2.The.Battle.for.Doldrey.2012.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9771,15 +5161,7 @@ "title": "Berserk The Golden Age Arc 2 The Battle for Doldrey", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8552316816, - "modified_timestamp": "2021-05-20T05:03:54+00:00", - "resolution": "1920x812", - "codec": "h264", - "duration_seconds": 5565.355, - "bitrate_kbps": 12293 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Hit.Man.2024.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -9788,15 +5170,7 @@ "title": "Hit Man", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7249955353, - "modified_timestamp": "2024-07-04T08:05:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6939.488, - "bitrate_kbps": 8357 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Accountant.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Accountant.2.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -9805,15 +5179,7 @@ "title": "The Accountant 2", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11295412457, - "modified_timestamp": "2025-08-08T12:38:28+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7944.645, - "bitrate_kbps": 11374 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/El.Camino.A.Breaking.Bad.Movie.2019.720p.BluRay.DD5.1.x264-iFT.mkv", @@ -9822,15 +5188,7 @@ "title": "El Camino A Breaking Bad Movie", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8392506340, - "modified_timestamp": "2020-10-13T02:26:31+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 7338.4, - "bitrate_kbps": 9149 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/12.12.The.Day.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi/12.12.The.Day.2023.1080p.BluRay.x265.10bit.TrueHD5.1-WiKi.mkv", @@ -9839,15 +5197,7 @@ "title": "12 12 The Day", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11817965583, - "modified_timestamp": "2024-11-19T08:33:51+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8522.048, - "bitrate_kbps": 11094 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Anatomy.of.a.Fall.2023.1080p.BluRay.x265.10bit.DTS-WiKi/Anatomy.of.a.Fall.2023.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9856,15 +5206,7 @@ "title": "Anatomy of a Fall", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 14908402636, - "modified_timestamp": "2023-12-27T00:55:14+00:00", - "resolution": "1920x1036", - "codec": "hevc", - "duration_seconds": 9065.003, - "bitrate_kbps": 13156 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -9873,15 +5215,7 @@ "title": "Kim Ji-young Born", "year": 1982, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13149711000, - "modified_timestamp": "2025-04-22T11:47:18+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7127.12, - "bitrate_kbps": 14760 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi/Sample/Kim.Ji-young.Born.1982.2019.1080p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -9890,15 +5224,7 @@ "title": "Kim Ji-young Born", "year": 1982, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 129885283, - "modified_timestamp": "2025-04-22T11:47:11+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 68.277, - "bitrate_kbps": 15218 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/GTO.Revival.2024.1080p.BluRay.x264-WiKi/GTO.Revival.2024.1080p.BluRay.x264-WiKi.mkv", @@ -9907,15 +5233,7 @@ "title": "GTO Revival", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7517481215, - "modified_timestamp": "2025-12-28T11:45:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5456.992, - "bitrate_kbps": 11020 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi/Worlds.Apart.2024.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9924,15 +5242,7 @@ "title": "Worlds Apart", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7050867868, - "modified_timestamp": "2024-10-10T11:30:48+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 8383.382, - "bitrate_kbps": 6728 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -9941,15 +5251,7 @@ "title": "Anime Supremacy", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5867212645, - "modified_timestamp": "2022-10-21T14:09:54+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7726.719, - "bitrate_kbps": 6074 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Anime.Supremacy.2022.1080p.BluRay.x265.10bit-WiKi.sample.mkv", @@ -9958,15 +5260,7 @@ "title": "Anime Supremacy", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 56410020, - "modified_timestamp": "2022-10-21T14:07:17+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 100.052, - "bitrate_kbps": 4510 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Infinite.2021.1080p.AMZN.WEB-DL.DDP5.1.H.264-MZABI.mkv", @@ -9975,15 +5269,7 @@ "title": "Infinite", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6459383237, - "modified_timestamp": "2021-07-09T06:33:26+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6380.576, - "bitrate_kbps": 8098 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Alienoid.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -9992,15 +5278,7 @@ "title": "Alienoid", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9076896707, - "modified_timestamp": "2023-01-26T03:43:19+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 8568.982, - "bitrate_kbps": 8474 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.sample.mkv", @@ -10009,15 +5287,7 @@ "title": "The Confidence Man JP Hero", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54473905, - "modified_timestamp": "2022-05-31T08:48:14+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 46.692, - "bitrate_kbps": 9333 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Confidence.Man.JP.Hero.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -10026,15 +5296,7 @@ "title": "The Confidence Man JP Hero", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5866105472, - "modified_timestamp": "2022-05-31T08:48:43+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 8338.64, - "bitrate_kbps": 5627 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/侠探杰克.Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Jack.Reacher.2012.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -10043,15 +5305,7 @@ "title": "Jack Reacher", "year": 2012, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8682052498, - "modified_timestamp": "2023-02-14T02:57:56+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 7824.416, - "bitrate_kbps": 8876 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/比海更深.2016.1080p.日语.简繁中字£CMCT蒙太奇/[比海更深].After.the.Storm.2016.BluRay.1080p.x264.AC3-CMCT.mkv", @@ -10060,15 +5314,7 @@ "title": "After the Storm", "year": 2016, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10188369137, - "modified_timestamp": "2025-06-23T11:15:19+00:00", - "resolution": "1920x1036", - "codec": "h264", - "duration_seconds": 7064.064, - "bitrate_kbps": 11538 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Fantastic.Four.First.Steps.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Fantastic.Four.First.Steps.2025.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -10077,15 +5323,7 @@ "title": "The Fantastic Four First Steps", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10583589887, - "modified_timestamp": "2025-10-09T12:26:11+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6882.144, - "bitrate_kbps": 12302 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/布拉格之恋.The.Unbearable.Lightness.of.Being.1988.1080p.WEB-DL.x265.AC3£cXcY@FRDS/The.Unbearable.Lightness.of.Being.1988.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -10094,15 +5332,7 @@ "title": "The Unbearable Lightness of Being", "year": 1988, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7989825617, - "modified_timestamp": "2024-05-18T11:44:14+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 10362.272, - "bitrate_kbps": 6168 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/Sample/The.Attorney.2021.720p.BluRay.x264-WiKi.Sample.mkv", @@ -10111,15 +5341,7 @@ "title": "The Attorney", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54769194, - "modified_timestamp": "2022-03-15T13:27:08+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 64.334, - "bitrate_kbps": 6810 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Attorney.2021.720p.BluRay.x264-WiKi/The.Attorney.2021.720p.BluRay.x264-WiKi.mkv", @@ -10128,15 +5350,7 @@ "title": "The Attorney", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4694078886, - "modified_timestamp": "2022-03-15T13:28:39+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6082.304, - "bitrate_kbps": 6174 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Black Adam 2022 BluRay 1080p TrueHD 7.1 x264-MTeam/Black.Adam.2022.BluRay.1080p.TrueHD.7.1.x264-MTeam.mkv", @@ -10145,15 +5359,7 @@ "title": "Black Adam", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 15100227457, - "modified_timestamp": "2023-01-01T11:27:15+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7492.319, - "bitrate_kbps": 16123 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -10162,15 +5368,7 @@ "title": "Detective vs Sleuths", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 38454569, - "modified_timestamp": "2022-10-21T11:55:08+00:00", - "resolution": "1920x818", - "codec": "hevc", - "duration_seconds": 61.209, - "bitrate_kbps": 5026 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi/Detective.vs.Sleuths.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -10179,15 +5377,7 @@ "title": "Detective vs Sleuths", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5862858147, - "modified_timestamp": "2022-10-21T11:55:25+00:00", - "resolution": "1920x818", - "codec": "hevc", - "duration_seconds": 6077.152, - "bitrate_kbps": 7717 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Reminiscence.2021.1080p.HMAX.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -10196,15 +5386,7 @@ "title": "Reminiscence", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7817214946, - "modified_timestamp": "2021-08-24T08:21:30+00:00", - "resolution": "1920x816", - "codec": "h264", - "duration_seconds": 6956.576, - "bitrate_kbps": 8989 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/撞车.Crash.2004.FRA.DC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Crash.2004.FRA.DC.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv", @@ -10213,15 +5395,7 @@ "title": "Crash", "year": 2004, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5235803489, - "modified_timestamp": "2025-04-21T12:37:48+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 6904.209, - "bitrate_kbps": 6066 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Transformers.Rise.of.the.Beasts.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Transformers.Rise.of.the.Beasts.2023.1080p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -10230,15 +5404,7 @@ "title": "Transformers Rise of the Beasts", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11222603893, - "modified_timestamp": "2023-10-05T08:52:30+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 7627.456, - "bitrate_kbps": 11770 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.mkv", @@ -10247,15 +5413,7 @@ "title": "School Meals Time Final Battle", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4287230079, - "modified_timestamp": "2020-08-19T10:17:39+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 6100.128, - "bitrate_kbps": 5622 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi/Sample/School.Meals.Time.Final.Battle.2020.720p.BluRay.x264-WiKi.sample.mkv", @@ -10264,15 +5422,7 @@ "title": "School Meals Time Final Battle", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 54100128, - "modified_timestamp": "2020-08-19T10:14:24+00:00", - "resolution": "1280x692", - "codec": "h264", - "duration_seconds": 73.727, - "bitrate_kbps": 5870 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Sample/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.Sample.mkv", @@ -10281,15 +5431,7 @@ "title": "Fantastic Beasts The Crimes of Grindelwald", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 63917052, - "modified_timestamp": "2022-02-13T05:51:05+00:00", - "resolution": "1280x534", - "codec": "h264", - "duration_seconds": 65.196, - "bitrate_kbps": 7843 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi/Fantastic.Beasts.The.Crimes.of.Grindelwald.2018.720p.BluRay.x264-WiKi.mkv", @@ -10298,15 +5440,7 @@ "title": "Fantastic Beasts The Crimes of Grindelwald", "year": 2018, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5868357870, - "modified_timestamp": "2022-02-13T06:05:29+00:00", - "resolution": "1280x534", - "codec": "h264", - "duration_seconds": 8030.048, - "bitrate_kbps": 5846 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Postmen.in.the.Mountains.1999.BluRay.1080p.DD2.0.x264.BMDru/Postmen.in.the.Mountains.1999.BluRay.1080p.DD2.0.x264.BMDru.mkv", @@ -10315,15 +5449,7 @@ "title": "Postmen in the Mountains", "year": 1999, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8316576126, - "modified_timestamp": "2025-10-10T05:28:45+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 5534.56, - "bitrate_kbps": 12021 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/Sample/1917.2019.1080p.BluRay.x264-WiKi.Sample.mkv", @@ -10332,15 +5458,7 @@ "title": "1917", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 117881667, - "modified_timestamp": "2020-08-04T13:15:06+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 63.739, - "bitrate_kbps": 14795 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/1917.2019.1080p.BluRay.x264-WiKi/1917.2019.1080p.BluRay.x264-WiKi.mkv", @@ -10349,15 +5467,7 @@ "title": "1917", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 11146859692, - "modified_timestamp": "2020-08-04T13:16:56+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 7138.144, - "bitrate_kbps": 12492 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.mkv", @@ -10366,15 +5476,7 @@ "title": "Crossing Hennessy", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5896330987, - "modified_timestamp": "2023-12-13T12:51:14+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 6283.616, - "bitrate_kbps": 7506 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi/Sample/Crossing.Hennessy.2010.720p.BluRay.x264.DTS-WiKi.Sample.mkv", @@ -10383,15 +5485,7 @@ "title": "Crossing Hennessy", "year": 2010, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 66125973, - "modified_timestamp": "2023-12-13T12:50:27+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 70.863, - "bitrate_kbps": 7465 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Venom.The.Last.Dance.2024.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi/Venom.The.Last.Dance.2024.2160p.BluRay.DoVi.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -10400,15 +5494,7 @@ "title": "Venom The Last Dance", "year": 2024, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 35622271897, - "modified_timestamp": "2025-01-07T11:29:49+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 6537.536, - "bitrate_kbps": 43591 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sad.Movie.2005.720p.BluRay.x264-WiKi.mkv", @@ -10417,15 +5503,7 @@ "title": "Sad Movie", "year": 2005, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7121991459, - "modified_timestamp": "2022-03-29T10:06:43+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6544.576, - "bitrate_kbps": 8705 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Sad.Movie.2005.720p.BluRay.x264-WiKi/Sample/Sad.Movie.2005.720p.BluRay.x264-WiKi.Sample.mkv", @@ -10434,15 +5512,7 @@ "title": "Sad Movie", "year": 2005, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 75547264, - "modified_timestamp": "2022-03-29T10:05:57+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 68.377, - "bitrate_kbps": 8838 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Man.2022.1080p.U-NEXT.WEB-DL.AAC2.0.H.264-xiaopie@CHDWEB.mkv", @@ -10451,15 +5521,7 @@ "title": "A Man", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3787296465, - "modified_timestamp": "2023-05-21T11:42:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7334.293, - "bitrate_kbps": 4131 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Pain.Hustlers.2023.1080p.NF.WEB-DL.DD+5.1.Atmos.H.264-playWEB.mkv", @@ -10468,15 +5530,7 @@ "title": "Pain Hustlers", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5307535531, - "modified_timestamp": "2023-11-04T03:28:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7489.042, - "bitrate_kbps": 5669 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Sample/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -10485,15 +5539,7 @@ "title": "Masquerade Night", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 114834892, - "modified_timestamp": "2022-04-03T09:13:21+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 70.296, - "bitrate_kbps": 13068 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi/Masquerade.Night.2021.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -10502,15 +5548,7 @@ "title": "Masquerade Night", "year": 2021, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 10471949765, - "modified_timestamp": "2022-04-03T09:14:05+00:00", - "resolution": "1920x804", - "codec": "h264", - "duration_seconds": 7733.942, - "bitrate_kbps": 10832 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Druk.2020.720p.BluRay.x264-WiKi.mkv", @@ -10519,15 +5557,7 @@ "title": "Druk", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5232472518, - "modified_timestamp": "2021-05-09T13:38:49+00:00", - "resolution": "1280x640", - "codec": "h264", - "duration_seconds": 6980.125, - "bitrate_kbps": 5996 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Druk.2020.720p.BluRay.x264-WiKi/Sample/Druk.2020.720p.BluRay.x264-WiKi.Sample.mkv", @@ -10536,15 +5566,7 @@ "title": "Druk", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 88349630, - "modified_timestamp": "2021-05-09T13:38:27+00:00", - "resolution": "1280x640", - "codec": "h264", - "duration_seconds": 61.67, - "bitrate_kbps": 11460 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.mkv", @@ -10553,15 +5575,7 @@ "title": "Bad Guys The Movie", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5935969714, - "modified_timestamp": "2020-06-14T02:24:37+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 6899.2, - "bitrate_kbps": 6883 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi/Sample/Bad.Guys.The.Movie.2019.720p.BluRay.x264-WiKi.Sample.mkv", @@ -10570,15 +5584,7 @@ "title": "Bad Guys The Movie", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 74544813, - "modified_timestamp": "2020-06-14T02:24:27+00:00", - "resolution": "1280x536", - "codec": "h264", - "duration_seconds": 64.253, - "bitrate_kbps": 9281 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -10587,15 +5593,7 @@ "title": "Chickenhare and the Hamster of Darkness", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5910916266, - "modified_timestamp": "2022-12-28T12:59:03+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 5517.846, - "bitrate_kbps": 8569 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/Chickenhare.and.the.Hamster.of.Darkness.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -10604,15 +5602,7 @@ "title": "Chickenhare and the Hamster of Darkness", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 68112216, - "modified_timestamp": "2022-12-28T12:56:10+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 62.243, - "bitrate_kbps": 8754 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -10621,15 +5611,7 @@ "title": "Thermae Romae II", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9666638680, - "modified_timestamp": "2025-03-27T01:14:33+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 6762.763, - "bitrate_kbps": 11435 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi/Sample/Thermae.Romae.II.2014.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -10638,15 +5620,7 @@ "title": "Thermae Romae II", "year": 2014, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 106034087, - "modified_timestamp": "2025-03-26T15:47:39+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 52.924, - "bitrate_kbps": 16028 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -10655,15 +5629,7 @@ "title": "Chilli Laugh Story", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5869110900, - "modified_timestamp": "2023-01-20T18:43:59+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 5481.632, - "bitrate_kbps": 8565 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi/Sample/Chilli.Laugh.Story.2022.1080p.BluRay.x265.10bit-WiKi.Sample.mkv", @@ -10672,15 +5638,7 @@ "title": "Chilli Laugh Story", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 118547816, - "modified_timestamp": "2023-01-20T18:40:00+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 66.051, - "bitrate_kbps": 14358 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai/Mosul.2019.BluRay.1080p.TrueHD.5.1.x265.10bit-BeiTai.mkv", @@ -10689,15 +5647,7 @@ "title": "Mosul", "year": 2019, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7934749341, - "modified_timestamp": "2021-09-01T11:29:35+00:00", - "resolution": "1920x1038", - "codec": "hevc", - "duration_seconds": 6100.32, - "bitrate_kbps": 10405 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Top.Gun.Maverick.2022.IMAX.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Top.Gun.Maverick.2022.IMAX.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -10706,15 +5656,7 @@ "title": "Top Gun Maverick", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 28381890680, - "modified_timestamp": "2023-04-11T05:53:39+00:00", - "resolution": "3840x2024", - "codec": "hevc", - "duration_seconds": 7814.528, - "bitrate_kbps": 29055 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/Aquaman.and.the.Lost.Kingdom.2023.1080p.Blu-ray.Atmos.TrueHD7.1.x265-HDH/Aquaman.and.the.Lost.Kingdom.2023.1080p.Blu-ray.Atmos.TrueHD7.1.x265-HDH.mkv", @@ -10723,15 +5665,7 @@ "title": "Aquaman and the Lost Kingdom", "year": 2023, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13335450792, - "modified_timestamp": "2024-03-08T13:42:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 7448.448, - "bitrate_kbps": 14322 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.mkv", @@ -10740,15 +5674,7 @@ "title": "The Confidence Man JP Princess", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 12887955385, - "modified_timestamp": "2021-01-03T05:16:31+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 7414.454, - "bitrate_kbps": 13905 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi/Sample/The.Confidence.Man.JP.Princess.2020.1080p.BluRay.x264.DTS-WiKi.sample.mkv", @@ -10757,15 +5683,7 @@ "title": "The Confidence Man JP Princess", "year": 2020, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 111177284, - "modified_timestamp": "2021-01-03T05:11:34+00:00", - "resolution": "1920x1038", - "codec": "h264", - "duration_seconds": 69.57, - "bitrate_kbps": 12784 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/Sample/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.Sample.mkv", @@ -10774,15 +5692,7 @@ "title": "The Contractor", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 70491518, - "modified_timestamp": "2022-06-06T11:38:04+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 61.19, - "bitrate_kbps": 9216 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi/The.Contractor.2022.1080p.BluRay.x265.10bit.DTS-WiKi.mkv", @@ -10791,15 +5701,7 @@ "title": "The Contractor", "year": 2022, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5886447249, - "modified_timestamp": "2022-06-06T11:42:39+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 6202.24, - "bitrate_kbps": 7592 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/千钧一发.Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS/Gattaca.1997.BluRay.1080p.x265.10bit.3Audio.MNHD-FRDS.mkv", @@ -10808,15 +5710,7 @@ "title": "Gattaca", "year": 1997, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5300198580, - "modified_timestamp": "2024-06-30T00:57:19+00:00", - "resolution": "1920x800", - "codec": "hevc", - "duration_seconds": 6387.423, - "bitrate_kbps": 6638 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/A.Working.Man.2025.2160p.iT.WEB-DL.H265.DV.DDP5.1.Atmos-Nest@ADWeb/A.Working.Man.2025.2160p.iT.WEB-DL.H265.DV.DDP5.1.Atmos-Nest@ADWeb.mkv", @@ -10825,15 +5719,7 @@ "title": "A Working Man", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 13391010487, - "modified_timestamp": "2025-04-27T12:28:41+00:00", - "resolution": "3832x1596", - "codec": "hevc", - "duration_seconds": 6974.112, - "bitrate_kbps": 15360 - } + "needs_review": false }, { "path": "/mnt/Downloads/movies/The.Gorge.2025.2160p.ATVP.WEB-DL.DDP5.1.Atmos.H.265-APEX.mkv", @@ -10842,15 +5728,7 @@ "title": "The Gorge", "year": 2025, "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 19934253911, - "modified_timestamp": "2025-02-15T14:16:32+00:00", - "resolution": "3840x2076", - "codec": "hevc", - "duration_seconds": 7667.552, - "bitrate_kbps": 20798 - } + "needs_review": false } ], "series": [ @@ -10864,15 +5742,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1775913188, - "modified_timestamp": "2019-12-21T08:12:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2842.584, - "bitrate_kbps": 4998 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E02.Four.Marks.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10884,15 +5754,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3126858895, - "modified_timestamp": "2019-12-21T08:14:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3656.584, - "bitrate_kbps": 6841 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E06.Rare.Species.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10904,15 +5766,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3411949211, - "modified_timestamp": "2019-12-21T08:11:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3574.584, - "bitrate_kbps": 7636 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E05.Bottled.Appetites.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10924,15 +5778,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3266958080, - "modified_timestamp": "2019-12-21T08:12:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3548.584, - "bitrate_kbps": 7365 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E03.Betrayer.Moon.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10944,15 +5790,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2660365804, - "modified_timestamp": "2019-12-21T08:15:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4022.56, - "bitrate_kbps": 5290 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E08.Much.More.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10964,15 +5802,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3003116293, - "modified_timestamp": "2019-12-21T08:12:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3578.584, - "bitrate_kbps": 6713 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E04.Of.Banquets.Bastards.and.Burials.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -10984,15 +5814,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3302138387, - "modified_timestamp": "2019-12-21T08:13:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3730.56, - "bitrate_kbps": 7081 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG/The.Witcher.S01E01.The.Ends.Beginning.1080p.NF.WEB-DL.DDP5.1.Atmos.x264-NG.mkv", @@ -11004,15 +5826,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2963034306, - "modified_timestamp": "2019-12-21T08:15:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3664.584, - "bitrate_kbps": 6468 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dexter.Resurrection.S01E01.A.Beating.Heart.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -11024,15 +5838,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3332528355, - "modified_timestamp": "2025-08-06T05:26:12+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 3083.936, - "bitrate_kbps": 8644 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11042,15 +5848,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1101499797, - "modified_timestamp": "2025-03-07T16:59:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2739.119, - "bitrate_kbps": 3217 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11060,15 +5858,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1349929945, - "modified_timestamp": "2025-03-07T16:49:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3380.825, - "bitrate_kbps": 3194 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E09.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11078,15 +5868,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1097895701, - "modified_timestamp": "2025-03-07T17:04:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2738.608, - "bitrate_kbps": 3207 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E07.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11096,15 +5878,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1098095715, - "modified_timestamp": "2025-03-07T17:00:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2743.646, - "bitrate_kbps": 3201 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E10.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11114,15 +5888,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1097556603, - "modified_timestamp": "2025-03-07T17:06:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2726.092, - "bitrate_kbps": 3220 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E08.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11132,15 +5898,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1100446203, - "modified_timestamp": "2025-03-07T17:02:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2742.114, - "bitrate_kbps": 3210 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11150,15 +5908,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1100664588, - "modified_timestamp": "2025-03-07T16:54:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2754.026, - "bitrate_kbps": 3197 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11168,15 +5918,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1094258651, - "modified_timestamp": "2025-03-07T16:55:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2725.999, - "bitrate_kbps": 3211 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11186,15 +5928,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1097743725, - "modified_timestamp": "2025-03-07T16:51:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2743.019, - "bitrate_kbps": 3201 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Koi.Nante.Honki.de.Yatte.Dousuruno.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Koi.Nante.Honki.de.Yatte.Dousuruno.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -11204,15 +5938,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1096640077, - "modified_timestamp": "2025-03-07T16:57:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2743.112, - "bitrate_kbps": 3198 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV/The.Peripheral.S01E06.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", @@ -11224,15 +5950,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6686564659, - "modified_timestamp": "2022-11-23T15:58:47+00:00", - "resolution": "3840x1920", - "codec": "hevc", - "duration_seconds": 3673.152, - "bitrate_kbps": 14563 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV/The.Peripheral.S01E07.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", @@ -11244,15 +5962,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5888978594, - "modified_timestamp": "2022-11-29T13:05:30+00:00", - "resolution": "3840x1920", - "codec": "hevc", - "duration_seconds": 3286.368, - "bitrate_kbps": 14335 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV/The.Peripheral.S01E03.2022.Amazon.WEB-DL.4K.HEVC.HDR.DDP-HDCTV.mkv", @@ -11264,15 +5974,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7868247567, - "modified_timestamp": "2022-11-03T07:50:16+00:00", - "resolution": "3840x1920", - "codec": "hevc", - "duration_seconds": 4293.331, - "bitrate_kbps": 14661 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11282,15 +5984,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2319625838, - "modified_timestamp": "2025-03-25T05:05:25+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2762.96, - "bitrate_kbps": 6716 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11300,15 +5994,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2228847631, - "modified_timestamp": "2025-03-25T05:07:05+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2773.005, - "bitrate_kbps": 6430 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11318,15 +6004,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2753855346, - "modified_timestamp": "2025-03-25T04:48:36+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2774.14, - "bitrate_kbps": 7941 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11336,15 +6014,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2895192473, - "modified_timestamp": "2025-03-25T04:52:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2778.042, - "bitrate_kbps": 8337 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11354,15 +6024,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2704295873, - "modified_timestamp": "2025-03-25T04:55:37+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2778.042, - "bitrate_kbps": 7787 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11372,15 +6034,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2477604800, - "modified_timestamp": "2025-03-25T04:58:40+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2766.03, - "bitrate_kbps": 7165 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11390,15 +6044,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2734778764, - "modified_timestamp": "2025-03-25T05:09:15+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2763.027, - "bitrate_kbps": 7918 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11408,15 +6054,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2535730143, - "modified_timestamp": "2025-03-25T05:00:03+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2778.042, - "bitrate_kbps": 7302 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP11.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11426,15 +6064,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2813565107, - "modified_timestamp": "2025-03-25T05:10:15+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3546.877, - "bitrate_kbps": 6346 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11444,15 +6074,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2635727229, - "modified_timestamp": "2025-03-25T05:02:12+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2778.042, - "bitrate_kbps": 7590 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2005.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2005.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -11462,15 +6084,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2449307907, - "modified_timestamp": "2025-03-25T05:03:33+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2778.042, - "bitrate_kbps": 7053 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E04.Armed.and.Dane-gerous.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11482,15 +6096,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2374495975, - "modified_timestamp": "2023-05-27T13:38:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3438.016, - "bitrate_kbps": 5525 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E05.Here.Today.Gone.To-Marrow.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11502,15 +6108,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2374427089, - "modified_timestamp": "2023-05-27T13:38:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3428.0, - "bitrate_kbps": 5541 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E03.Honeyplot.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11522,15 +6120,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2293550240, - "modified_timestamp": "2023-05-27T13:38:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3317.888, - "bitrate_kbps": 5530 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E01.Take.Your.Daughter.To.Work.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11542,15 +6132,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2304404668, - "modified_timestamp": "2023-05-27T12:07:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3323.904, - "bitrate_kbps": 5546 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E02.Stole.Train.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11562,15 +6144,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1901230314, - "modified_timestamp": "2023-05-27T13:38:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2773.344, - "bitrate_kbps": 5484 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E08.Thats.It.And.Thats.All.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11582,15 +6156,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1865133354, - "modified_timestamp": "2023-05-27T13:38:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2741.312, - "bitrate_kbps": 5443 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E06.Royally.Flushed.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11602,15 +6168,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2492504849, - "modified_timestamp": "2023-05-27T13:38:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3562.112, - "bitrate_kbps": 5597 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/FUBAR.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/FUBAR.S01E07.Urine.Luck.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -11622,15 +6180,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2128920646, - "modified_timestamp": "2023-05-27T13:38:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3101.664, - "bitrate_kbps": 5491 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E04.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11640,15 +6190,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2718028258, - "modified_timestamp": "2024-05-13T11:25:27+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2815.815, - "bitrate_kbps": 7722 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E05.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11658,15 +6200,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2741888452, - "modified_timestamp": "2024-05-13T11:25:28+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2832.765, - "bitrate_kbps": 7743 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E08.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11676,15 +6210,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2701255812, - "modified_timestamp": "2024-05-13T11:25:31+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2792.626, - "bitrate_kbps": 7738 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E06.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11694,15 +6220,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2743115096, - "modified_timestamp": "2024-05-13T11:25:31+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2830.497, - "bitrate_kbps": 7753 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E09.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11712,15 +6230,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2711923479, - "modified_timestamp": "2024-05-13T11:25:34+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2807.375, - "bitrate_kbps": 7727 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E07.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11730,15 +6240,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2700711263, - "modified_timestamp": "2024-05-13T11:25:26+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2783.58, - "bitrate_kbps": 7761 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E11.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11748,15 +6250,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2718903426, - "modified_timestamp": "2024-05-13T11:25:29+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2814.948, - "bitrate_kbps": 7727 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E01.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11766,15 +6260,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5395190471, - "modified_timestamp": "2024-05-13T11:25:33+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 5614.447, - "bitrate_kbps": 7687 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E10.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11784,15 +6270,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2705252508, - "modified_timestamp": "2024-05-13T11:25:27+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2793.126, - "bitrate_kbps": 7748 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E03.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11802,15 +6280,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2762584766, - "modified_timestamp": "2024-05-13T11:25:29+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2867.567, - "bitrate_kbps": 7707 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/白夜行.2006.全11集.1080p.简繁中字£CMCT木丁西/[白夜行].Into.the.White.Night.E02.2006.1080p.BluRay.x265.FLAC-CMCT.mkv", @@ -11820,15 +6290,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2734841001, - "modified_timestamp": "2024-05-13T11:25:29+00:00", - "resolution": "1916x1080", - "codec": "hevc", - "duration_seconds": 2808.441, - "bitrate_kbps": 7790 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E12.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11840,15 +6302,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3141212024, - "modified_timestamp": "2025-07-01T00:11:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4928.213, - "bitrate_kbps": 5099 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E09.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11860,15 +6314,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3068566641, - "modified_timestamp": "2025-06-30T23:58:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4805.377, - "bitrate_kbps": 5108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E05.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11880,15 +6326,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2997554699, - "modified_timestamp": "2025-06-30T23:38:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4702.464, - "bitrate_kbps": 5099 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11900,15 +6338,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3298844433, - "modified_timestamp": "2025-06-30T23:17:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4846.293, - "bitrate_kbps": 5445 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11920,15 +6350,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2905095379, - "modified_timestamp": "2025-06-30T23:32:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4556.459, - "bitrate_kbps": 5100 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E08.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11940,15 +6362,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3093394457, - "modified_timestamp": "2025-06-30T23:53:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4844.373, - "bitrate_kbps": 5108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E06.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11960,15 +6374,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3113521734, - "modified_timestamp": "2025-06-30T23:43:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4876.843, - "bitrate_kbps": 5107 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E02.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -11980,15 +6386,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3021041301, - "modified_timestamp": "2025-06-30T23:22:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4722.347, - "bitrate_kbps": 5117 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E11.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -12000,15 +6398,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3201149983, - "modified_timestamp": "2025-07-01T00:07:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5017.729, - "bitrate_kbps": 5103 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E10.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -12020,15 +6410,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2655625538, - "modified_timestamp": "2025-07-01T00:01:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4164.225, - "bitrate_kbps": 5101 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E07.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -12040,15 +6422,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3109667569, - "modified_timestamp": "2025-06-30T23:48:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4866.859, - "bitrate_kbps": 5111 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[未知的首尔].Our.Unwritten.Seoul.S01.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV/[未知的首尔].Our.Unwritten.Seoul.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-CMCTV.mkv", @@ -12060,15 +6434,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3027695118, - "modified_timestamp": "2025-06-30T23:27:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4741.846, - "bitrate_kbps": 5108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第06話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -12078,15 +6444,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1088867402, - "modified_timestamp": "2024-06-11T23:53:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2718.035, - "bitrate_kbps": 3204 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -12096,15 +6454,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2908836217, - "modified_timestamp": "2024-10-23T11:34:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3333.024, - "bitrate_kbps": 6981 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Reacher.S03E05.Smackdown.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -12116,15 +6466,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3459083026, - "modified_timestamp": "2025-03-16T01:05:48+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2916.164, - "bitrate_kbps": 9489 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E06.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12136,15 +6478,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2957109913, - "modified_timestamp": "2021-07-29T09:49:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3668.544, - "bitrate_kbps": 6448 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E07.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12156,15 +6490,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3685368425, - "modified_timestamp": "2021-07-29T09:49:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4570.784, - "bitrate_kbps": 6450 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E04.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12176,15 +6502,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2866054950, - "modified_timestamp": "2021-07-29T09:49:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3556.096, - "bitrate_kbps": 6447 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E05.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12196,15 +6514,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2956014496, - "modified_timestamp": "2021-07-29T09:49:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3668.064, - "bitrate_kbps": 6447 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E03.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12216,15 +6526,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2977132205, - "modified_timestamp": "2021-07-29T09:49:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3693.94025, - "bitrate_kbps": 6447 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E02.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12236,15 +6538,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2890102141, - "modified_timestamp": "2021-07-29T09:49:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3587.33375, - "bitrate_kbps": 6445 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mare.Of.Easttown.S01.1080p.WEB-DL.x264-DJYDXS/Mare.Of.Easttown.S01E01.1080p.WEB-DL.x264-DJYDXS.mp4", @@ -12256,15 +6550,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2810678145, - "modified_timestamp": "2021-07-29T09:49:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3485.518708, - "bitrate_kbps": 6451 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E09.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12276,15 +6562,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4810224493, - "modified_timestamp": "2024-10-28T12:54:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 7405.802, - "bitrate_kbps": 5196 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E08.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12296,15 +6574,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4144315585, - "modified_timestamp": "2024-10-28T12:51:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6376.81, - "bitrate_kbps": 5199 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E03.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12316,15 +6586,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3448825655, - "modified_timestamp": "2024-10-28T12:39:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5313.045, - "bitrate_kbps": 5192 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E02.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12336,15 +6598,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3321919810, - "modified_timestamp": "2024-10-28T12:33:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5124.97, - "bitrate_kbps": 5185 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E01.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12356,15 +6610,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2719413635, - "modified_timestamp": "2024-10-28T12:27:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4202.709, - "bitrate_kbps": 5176 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E05.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12376,15 +6622,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3333386861, - "modified_timestamp": "2024-10-28T12:45:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5131.797, - "bitrate_kbps": 5196 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E10.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12396,15 +6634,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3478065567, - "modified_timestamp": "2024-10-28T12:56:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5355.285, - "bitrate_kbps": 5195 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E11.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12416,15 +6646,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2836766516, - "modified_timestamp": "2024-10-28T12:57:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4372.714, - "bitrate_kbps": 5189 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E04.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12436,15 +6658,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3266631377, - "modified_timestamp": "2024-10-28T12:43:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5039.509, - "bitrate_kbps": 5185 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E06.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12456,15 +6670,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3504913057, - "modified_timestamp": "2024-10-28T12:47:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5405.738, - "bitrate_kbps": 5186 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ideology.Verification.Zone.The.Community.1080p.WAVVE.WEB-DL.AAC.H264/Ideology.Verification.Zone.The.Community.S01E07.1080p.WAVVE.WEB-DL.AAC.H264.mkv", @@ -12476,15 +6682,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3327711040, - "modified_timestamp": "2024-10-28T12:49:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5123.797, - "bitrate_kbps": 5195 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12496,15 +6694,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3104171185, - "modified_timestamp": "2022-08-30T03:03:26+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4104.832, - "bitrate_kbps": 6049 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12516,15 +6706,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2162085261, - "modified_timestamp": "2022-12-22T19:30:08+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4236.864, - "bitrate_kbps": 4082 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12536,15 +6718,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3186366855, - "modified_timestamp": "2022-12-22T19:30:09+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4106.848, - "bitrate_kbps": 6206 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12556,15 +6730,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2700499111, - "modified_timestamp": "2022-12-22T19:30:09+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4240.96, - "bitrate_kbps": 5094 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12576,15 +6742,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3243923930, - "modified_timestamp": "2022-08-30T03:03:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4240.96, - "bitrate_kbps": 6119 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E12.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12596,15 +6754,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3947549793, - "modified_timestamp": "2022-12-22T19:30:09+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4607.2, - "bitrate_kbps": 6854 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12616,15 +6766,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2934502024, - "modified_timestamp": "2022-12-22T16:59:25+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3834.528, - "bitrate_kbps": 6122 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12636,15 +6778,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3431684255, - "modified_timestamp": "2022-08-30T03:03:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4447.168, - "bitrate_kbps": 6173 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E11.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12656,15 +6790,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2694604067, - "modified_timestamp": "2022-12-22T19:30:08+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4130.752, - "bitrate_kbps": 5218 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12676,15 +6802,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2515465903, - "modified_timestamp": "2022-12-22T19:30:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4078.656, - "bitrate_kbps": 4933 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12696,15 +6814,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2953527479, - "modified_timestamp": "2022-08-30T03:03:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3860.544, - "bitrate_kbps": 6120 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Money.Heist.Korea.Joint.Economic.Area.S01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/Money.Heist.Korea.Joint.Economic.Area.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -12716,15 +6826,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3589240861, - "modified_timestamp": "2022-08-30T03:03:25+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4683.392, - "bitrate_kbps": 6131 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04E04.Night.Country.Part.4.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -12736,15 +6838,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4391088839, - "modified_timestamp": "2024-02-05T11:19:09+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3641.889, - "bitrate_kbps": 9645 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12756,15 +6850,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2371888871, - "modified_timestamp": "2022-11-04T14:51:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4108.704, - "bitrate_kbps": 4618 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12776,15 +6862,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1697003658, - "modified_timestamp": "2022-11-04T14:52:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3727.264, - "bitrate_kbps": 3642 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12796,15 +6874,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1843425150, - "modified_timestamp": "2022-11-04T14:52:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3919.776, - "bitrate_kbps": 3762 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12816,15 +6886,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2922370393, - "modified_timestamp": "2022-11-04T14:52:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3948.576, - "bitrate_kbps": 5920 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12836,15 +6898,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3515620333, - "modified_timestamp": "2022-11-04T14:52:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4851.744, - "bitrate_kbps": 5796 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12856,15 +6910,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2832581408, - "modified_timestamp": "2022-11-04T14:52:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3827.872, - "bitrate_kbps": 5919 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12876,15 +6922,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3093245001, - "modified_timestamp": "2022-11-04T14:52:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4181.92, - "bitrate_kbps": 5917 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12896,15 +6934,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2153841876, - "modified_timestamp": "2022-11-04T14:52:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3940.768, - "bitrate_kbps": 4372 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12916,15 +6946,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3843834823, - "modified_timestamp": "2022-11-04T14:52:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4320.416, - "bitrate_kbps": 7117 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12936,15 +6958,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1539401593, - "modified_timestamp": "2022-11-04T14:52:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3862.432, - "bitrate_kbps": 3188 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12956,15 +6970,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3001323014, - "modified_timestamp": "2022-11-04T13:25:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3843.744, - "bitrate_kbps": 6246 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12976,15 +6982,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3545922690, - "modified_timestamp": "2022-11-04T14:52:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4046.209, - "bitrate_kbps": 7010 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -12996,15 +6994,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3563535338, - "modified_timestamp": "2022-11-04T14:52:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4074.784, - "bitrate_kbps": 6996 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -13016,15 +7006,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2629497598, - "modified_timestamp": "2022-11-04T14:52:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3948.96, - "bitrate_kbps": 5326 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -13036,15 +7018,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2996275528, - "modified_timestamp": "2022-11-04T14:52:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4168.736, - "bitrate_kbps": 5749 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/나의 해방일지.My.Liberation.Notes.S01.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT/나의 해방일지.My.Liberation.Notes.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-REVOLT.mkv", @@ -13056,15 +7030,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2963641701, - "modified_timestamp": "2022-11-04T14:52:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3956.512, - "bitrate_kbps": 5992 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E06.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13076,15 +7042,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2732342303, - "modified_timestamp": "2024-10-27T10:34:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3628.352, - "bitrate_kbps": 6024 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E02.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13096,15 +7054,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3306663300, - "modified_timestamp": "2024-10-27T10:28:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4370.624, - "bitrate_kbps": 6052 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E11.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13116,15 +7066,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2870410070, - "modified_timestamp": "2024-10-27T10:47:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3826.496, - "bitrate_kbps": 6001 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E10.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13136,15 +7078,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3174208859, - "modified_timestamp": "2024-10-27T10:43:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4190.912, - "bitrate_kbps": 6059 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E07.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13156,15 +7090,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2797305140, - "modified_timestamp": "2024-10-27T10:36:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3718.592, - "bitrate_kbps": 6017 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E03.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13176,15 +7102,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3431943206, - "modified_timestamp": "2024-10-27T10:29:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4534.976, - "bitrate_kbps": 6054 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E09.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13196,15 +7114,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3000940513, - "modified_timestamp": "2024-10-27T10:40:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3988.544, - "bitrate_kbps": 6019 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E12.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13216,15 +7126,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2891063753, - "modified_timestamp": "2024-10-27T10:49:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3845.696, - "bitrate_kbps": 6014 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E05.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13236,15 +7138,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2846109005, - "modified_timestamp": "2024-10-27T10:32:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3783.488, - "bitrate_kbps": 6017 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13256,15 +7150,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2859842933, - "modified_timestamp": "2024-10-27T10:26:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3803.072, - "bitrate_kbps": 6015 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E04.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13276,15 +7162,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2907911049, - "modified_timestamp": "2024-10-27T10:30:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3859.52, - "bitrate_kbps": 6027 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV/黑白厨师.料理阶级战争.Culinary.Class.Wars.S01E08.2024.1080p.NF.WEB-DL.DDP5.1.x264-GrassTV.mkv", @@ -13296,15 +7174,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3046267540, - "modified_timestamp": "2024-10-27T10:38:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4030.784, - "bitrate_kbps": 6046 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP04.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13314,15 +7184,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5389819909, - "modified_timestamp": "2024-06-03T13:43:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3602.048, - "bitrate_kbps": 11970 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP05.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13332,15 +7194,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5390181339, - "modified_timestamp": "2024-06-03T13:43:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3492.043, - "bitrate_kbps": 12348 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP01.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13350,15 +7204,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5388807482, - "modified_timestamp": "2024-06-03T13:43:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3563.723, - "bitrate_kbps": 12097 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP03.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13368,15 +7214,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5389685421, - "modified_timestamp": "2024-06-03T13:43:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3602.048, - "bitrate_kbps": 11970 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP02.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13386,15 +7224,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5389267985, - "modified_timestamp": "2024-06-03T13:43:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3526.88, - "bitrate_kbps": 12224 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/战争与和平.全6集.2016.1080p.中英字幕£CMCT风潇潇/[战争与和平].War.And.Peace.EP06.2016.BluRay.1080p.x264.DTS-CMCT.mkv", @@ -13404,15 +7234,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 7533830038, - "modified_timestamp": "2024-06-03T13:43:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4927.766, - "bitrate_kbps": 12230 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/A.Murder.At.The.End.Of.The.World.S01E01.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/A.Murder.at.the.End.of.the.World.S01E01.Homme.Fatal.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -13424,15 +7246,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3171658314, - "modified_timestamp": "2023-11-20T11:14:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4209.414, - "bitrate_kbps": 6027 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E03.The.Fog.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13444,15 +7258,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1091085185, - "modified_timestamp": "2022-11-19T15:48:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3728.672, - "bitrate_kbps": 2340 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E05.The.Calling.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13464,15 +7270,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1028148605, - "modified_timestamp": "2022-11-19T15:48:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3002.656, - "bitrate_kbps": 2739 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E08.The.Key.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13484,15 +7282,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1104350805, - "modified_timestamp": "2022-11-19T15:48:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3024.672, - "bitrate_kbps": 2920 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E07.The.Storm.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13504,15 +7294,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1314937152, - "modified_timestamp": "2022-11-19T15:48:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3212.64, - "bitrate_kbps": 3274 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E02.The.Boy.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13524,15 +7306,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1084317319, - "modified_timestamp": "2022-11-19T15:48:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3490.656, - "bitrate_kbps": 2485 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E06.The.Pyramid.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13544,15 +7318,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1186967215, - "modified_timestamp": "2022-11-19T15:48:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3242.656, - "bitrate_kbps": 2928 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E01.The.Ship.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13564,15 +7330,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1147768276, - "modified_timestamp": "2022-11-19T15:48:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3602.656, - "bitrate_kbps": 2548 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/1899.S01.1080p.PROPER.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF/1899.S01E04.The.Fight.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-SMURF.mkv", @@ -13584,15 +7342,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1111638414, - "modified_timestamp": "2022-11-19T15:48:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3048.64, - "bitrate_kbps": 2917 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第3話 今夜決行!191秒の脱獄計画! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -13602,15 +7352,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 962079217, - "modified_timestamp": "2024-05-16T12:22:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2720.0, - "bitrate_kbps": 2829 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13622,15 +7364,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 695267128, - "modified_timestamp": "2022-12-22T20:16:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2955.552, - "bitrate_kbps": 1881 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13642,15 +7376,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 914721339, - "modified_timestamp": "2022-12-22T20:16:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2971.584, - "bitrate_kbps": 2462 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13662,15 +7388,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 916207341, - "modified_timestamp": "2022-12-22T20:15:58+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3063.648, - "bitrate_kbps": 2392 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13682,15 +7400,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 995547289, - "modified_timestamp": "2022-12-22T20:16:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3039.648, - "bitrate_kbps": 2620 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13702,15 +7412,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1007519492, - "modified_timestamp": "2022-12-22T20:16:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3498.08, - "bitrate_kbps": 2304 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13722,15 +7424,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1003962120, - "modified_timestamp": "2022-12-22T20:16:38+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3273.888, - "bitrate_kbps": 2453 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13742,15 +7436,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1195540997, - "modified_timestamp": "2022-12-22T20:16:25+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4272.864, - "bitrate_kbps": 2238 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Somebody.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Somebody.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -13762,15 +7448,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 961168486, - "modified_timestamp": "2022-12-22T20:16:42+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3115.712, - "bitrate_kbps": 2467 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E07.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13782,15 +7460,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1986795782, - "modified_timestamp": "2024-12-07T08:08:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2037.984, - "bitrate_kbps": 7799 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E03.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13802,15 +7472,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1426629439, - "modified_timestamp": "2024-12-07T08:08:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1720.384, - "bitrate_kbps": 6634 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E08.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13822,15 +7484,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2173444836, - "modified_timestamp": "2024-12-07T08:08:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2054.816, - "bitrate_kbps": 8461 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E04.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13842,15 +7496,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1362236891, - "modified_timestamp": "2024-12-07T08:08:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1861.664, - "bitrate_kbps": 5853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E02.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13862,15 +7508,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1317349792, - "modified_timestamp": "2024-12-07T08:07:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1910.208, - "bitrate_kbps": 5517 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E06.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13882,15 +7520,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1200442363, - "modified_timestamp": "2024-12-07T08:08:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1789.6, - "bitrate_kbps": 5366 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13902,15 +7532,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1596557270, - "modified_timestamp": "2024-12-07T08:08:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2332.8, - "bitrate_kbps": 5475 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Murder.Mindfully.S01.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Murder.Mindfully.S01E05.2024.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -13922,15 +7544,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1571318685, - "modified_timestamp": "2024-12-07T07:46:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1987.776, - "bitrate_kbps": 6323 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E08.A.Breakup.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -13942,15 +7556,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5635193189, - "modified_timestamp": "2024-02-16T07:03:35+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3834.848, - "bitrate_kbps": 11755 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E06.Couples.Therapy.Naked.&.Afraid.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -13962,15 +7568,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3264908939, - "modified_timestamp": "2024-02-16T07:03:33+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2657.568, - "bitrate_kbps": 9828 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E01.First.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -13982,15 +7580,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4748957725, - "modified_timestamp": "2024-02-16T07:03:37+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3500.292, - "bitrate_kbps": 10853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E07.Infidelity.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -14002,15 +7592,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2963148307, - "modified_timestamp": "2024-02-16T07:03:35+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2509.28, - "bitrate_kbps": 9447 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E05.Do.You.Want.Kids.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -14022,15 +7604,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3774104761, - "modified_timestamp": "2024-02-16T07:03:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2884.224, - "bitrate_kbps": 10468 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E03.First.Vacation.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -14042,15 +7616,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3596920879, - "modified_timestamp": "2024-02-16T07:03:34+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2782.016, - "bitrate_kbps": 10343 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E04.Double.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -14062,15 +7628,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3302807142, - "modified_timestamp": "2024-02-16T07:03:31+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2719.264, - "bitrate_kbps": 9716 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mr.&.Mrs.Smith.S01.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB/Mr.&.Mrs.Smith.S01E02.Second.Date.1080p.AMZN.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -14082,15 +7640,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3163516505, - "modified_timestamp": "2024-02-16T07:03:32+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2703.296, - "bitrate_kbps": 9361 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E14.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14102,15 +7652,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2571042099, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4012.064, - "bitrate_kbps": 5126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14122,15 +7664,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2590426137, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4042.144, - "bitrate_kbps": 5126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E15.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14142,15 +7676,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2907630300, - "modified_timestamp": "2023-11-08T18:24:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4535.584, - "bitrate_kbps": 5128 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E02.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14162,15 +7688,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2692688011, - "modified_timestamp": "2023-11-08T18:24:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4206.24, - "bitrate_kbps": 5121 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E16.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14182,15 +7700,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2825812358, - "modified_timestamp": "2023-11-08T18:24:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4416.544, - "bitrate_kbps": 5118 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E03.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14202,15 +7712,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2625566058, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4102.176, - "bitrate_kbps": 5120 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E04.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14222,15 +7724,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2661386559, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4150.176, - "bitrate_kbps": 5130 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E10.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14242,15 +7736,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2532029668, - "modified_timestamp": "2023-11-08T18:24:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3949.088, - "bitrate_kbps": 5129 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E05.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14262,15 +7748,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2774354602, - "modified_timestamp": "2023-11-08T18:24:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4330.4, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E11.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14282,15 +7760,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2952166033, - "modified_timestamp": "2023-11-08T18:24:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4607.648, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E06.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14302,15 +7772,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2944442139, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4595.616, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E12.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14322,15 +7784,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2516052474, - "modified_timestamp": "2023-11-08T18:24:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3922.976, - "bitrate_kbps": 5130 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E07.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14342,15 +7796,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2834007632, - "modified_timestamp": "2023-11-08T18:24:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4423.456, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E13.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14362,15 +7808,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2841318228, - "modified_timestamp": "2023-11-08T18:23:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4434.464, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E08.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14382,15 +7820,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2923056876, - "modified_timestamp": "2023-11-08T18:24:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4560.672, - "bitrate_kbps": 5127 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/欢迎来到王之国.King.the.Land.S01.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV/欢迎来到王之国.King.the.Land.S01E09.2023.1080p.NF.WEB-DL.H264.DDP2.0-OurTV.mkv", @@ -14402,15 +7832,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2657563403, - "modified_timestamp": "2023-11-08T18:24:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4148.256, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.mkv", @@ -14422,15 +7844,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4888073310, - "modified_timestamp": "2022-01-05T05:36:28+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5677.408, - "bitrate_kbps": 6887 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Sample/Unsere.Muetter.unsere.Vaeter.S01E03.720p.BluRay.x264-WiKi.Sample.mkv", @@ -14442,15 +7856,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 70980633, - "modified_timestamp": "2022-01-05T05:20:17+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 66.376, - "bitrate_kbps": 8554 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E01.720p.BluRay.x264-WiKi.mkv", @@ -14462,15 +7868,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4681078024, - "modified_timestamp": "2022-01-05T05:36:29+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5439.648, - "bitrate_kbps": 6884 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Unsere.Muetter.unsere.Vaeter.S01.720p.BluRay.x264-WiKi/Unsere.Muetter.unsere.Vaeter.S01E02.720p.BluRay.x264-WiKi.mkv", @@ -14482,15 +7880,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4574353223, - "modified_timestamp": "2022-01-05T05:36:27+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5313.824, - "bitrate_kbps": 6886 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E03.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14502,15 +7892,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1791600516, - "modified_timestamp": "2022-12-24T05:35:52+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 2458.176, - "bitrate_kbps": 5830 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E04.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14522,15 +7904,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2065330258, - "modified_timestamp": "2022-12-24T05:35:49+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 2860.96, - "bitrate_kbps": 5775 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E02.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14542,15 +7916,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2367364003, - "modified_timestamp": "2022-12-24T05:35:54+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 3192.292, - "bitrate_kbps": 5932 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E06.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14562,15 +7928,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1979143272, - "modified_timestamp": "2022-12-24T05:35:54+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 2722.272, - "bitrate_kbps": 5816 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E01.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14582,15 +7940,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2229955265, - "modified_timestamp": "2022-12-24T05:35:58+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 3019.584, - "bitrate_kbps": 5907 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/洛基S01.Loki.2021.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Loki.S01E05.2021.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -14602,15 +7952,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2169544745, - "modified_timestamp": "2022-12-24T05:35:55+00:00", - "resolution": "1920x804", - "codec": "hevc", - "duration_seconds": 2909.28, - "bitrate_kbps": 5965 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E06.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14622,15 +7964,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1522393168, - "modified_timestamp": "2022-07-06T11:24:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3301.6, - "bitrate_kbps": 3688 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14642,15 +7976,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1568649530, - "modified_timestamp": "2022-07-06T11:24:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3906.912, - "bitrate_kbps": 3212 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E07.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14662,15 +7988,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1185766506, - "modified_timestamp": "2022-07-06T11:24:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3469.984, - "bitrate_kbps": 2733 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E08.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14682,15 +8000,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1626329806, - "modified_timestamp": "2022-07-06T11:24:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3576.832, - "bitrate_kbps": 3637 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E03.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14702,15 +8012,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1182454389, - "modified_timestamp": "2022-07-06T11:24:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3472.8, - "bitrate_kbps": 2723 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E04.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14722,15 +8024,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1575774982, - "modified_timestamp": "2022-07-06T11:24:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3571.232, - "bitrate_kbps": 3529 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E02.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14742,15 +8036,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1099185220, - "modified_timestamp": "2022-07-06T11:24:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3296.608, - "bitrate_kbps": 2667 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/终极名单.The.Terminal.List.2022.S01.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV/终极名单.The.Terminal.List.2022.S01E05.1080p.Amazon.WEB-DL.H264.DDP5.1-OurTV.mkv", @@ -14762,15 +8048,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1034647444, - "modified_timestamp": "2022-07-06T11:24:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3036.0, - "bitrate_kbps": 2726 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E10.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14782,15 +8060,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1079442737, - "modified_timestamp": "2023-03-23T13:39:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2683.066, - "bitrate_kbps": 3218 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14802,15 +8072,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1093281429, - "modified_timestamp": "2023-03-23T13:35:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2719.126, - "bitrate_kbps": 3216 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E08.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14822,15 +8084,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1088687189, - "modified_timestamp": "2023-03-23T13:35:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2714.552, - "bitrate_kbps": 3208 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E05.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14842,15 +8096,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1090610475, - "modified_timestamp": "2023-03-23T13:35:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2715.759, - "bitrate_kbps": 3212 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E04.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14862,15 +8108,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1089818177, - "modified_timestamp": "2023-03-23T13:35:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2717.617, - "bitrate_kbps": 3208 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E02.REPACK.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14882,15 +8120,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1091326553, - "modified_timestamp": "2023-03-23T13:36:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2717.082, - "bitrate_kbps": 3213 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E09.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14902,15 +8132,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1086936917, - "modified_timestamp": "2023-03-23T13:38:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2715.551, - "bitrate_kbps": 3202 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E06.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14922,15 +8144,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1094286190, - "modified_timestamp": "2023-03-23T13:38:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2718.522, - "bitrate_kbps": 3220 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14942,15 +8156,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1086502005, - "modified_timestamp": "2023-03-23T13:34:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2716.595, - "bitrate_kbps": 3199 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brush.Up.Life.S01.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Brush.Up.Life.S01E07.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -14962,15 +8168,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1088351493, - "modified_timestamp": "2023-03-23T13:38:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2719.729, - "bitrate_kbps": 3201 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E03.2016.720p.BluRay.x264-WiKi.mkv", @@ -14982,15 +8180,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075786535, - "modified_timestamp": "2019-11-28T12:52:49+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1427.04, - "bitrate_kbps": 6030 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E07.2016.720p.BluRay.x264-WiKi.mkv", @@ -15002,15 +8192,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075858971, - "modified_timestamp": "2019-11-28T12:52:47+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1427.072, - "bitrate_kbps": 6031 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E02.2016.720p.BluRay.x264-WiKi.mkv", @@ -15022,15 +8204,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1076412543, - "modified_timestamp": "2019-11-28T12:52:41+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1426.976, - "bitrate_kbps": 6034 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E06.2016.720p.BluRay.x264-WiKi.mkv", @@ -15042,15 +8216,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075354239, - "modified_timestamp": "2019-11-28T12:52:46+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1426.944, - "bitrate_kbps": 6028 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E10.2016.720p.BluRay.x264-WiKi.mkv", @@ -15062,15 +8228,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1074992696, - "modified_timestamp": "2019-11-28T12:53:23+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1427.04, - "bitrate_kbps": 6026 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E04.2016.720p.BluRay.x264-WiKi.mkv", @@ -15082,15 +8240,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075997658, - "modified_timestamp": "2019-11-28T12:52:47+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1426.976, - "bitrate_kbps": 6032 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E08.2016.720p.BluRay.x264-WiKi.mkv", @@ -15102,15 +8252,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075818098, - "modified_timestamp": "2019-11-28T12:52:42+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1426.912, - "bitrate_kbps": 6031 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E09.2016.720p.BluRay.x264-WiKi.mkv", @@ -15122,15 +8264,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1076141358, - "modified_timestamp": "2019-11-28T12:52:42+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1427.072, - "bitrate_kbps": 6032 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E01.2016.720p.BluRay.x264-WiKi.mkv", @@ -15142,15 +8276,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075278616, - "modified_timestamp": "2019-11-28T12:52:43+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1426.944, - "bitrate_kbps": 6028 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Midnight.Diner.S04.2016.720p.BluRay.x264-WiKi/Midnight.Diner.S04E05.2016.720p.BluRay.x264-WiKi.mkv", @@ -15162,15 +8288,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1075194168, - "modified_timestamp": "2019-11-28T12:53:10+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1427.072, - "bitrate_kbps": 6027 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E03.Episode03.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15183,15 +8301,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2039176420, - "modified_timestamp": "2024-08-08T03:25:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3090.796, - "bitrate_kbps": 5278 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E06.Episode06.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15204,15 +8314,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1467676734, - "modified_timestamp": "2024-08-08T03:28:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2268.224, - "bitrate_kbps": 5176 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E05.Episode05.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15225,15 +8327,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1787571910, - "modified_timestamp": "2024-08-08T03:28:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2720.96, - "bitrate_kbps": 5255 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E01.Episode01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15246,15 +8340,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2178776731, - "modified_timestamp": "2024-08-08T03:20:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3277.376, - "bitrate_kbps": 5318 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E02.Episode02.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15267,15 +8353,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2044173805, - "modified_timestamp": "2024-08-08T03:24:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3091.136, - "bitrate_kbps": 5290 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E07.Episode07.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15288,15 +8366,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2686661461, - "modified_timestamp": "2024-08-08T03:29:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3998.144, - "bitrate_kbps": 5375 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Tokyo.Swindlers.S01.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB/Tokyo.Swindlers.S01E04.Episode04.1080p.NF.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15309,15 +8379,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2494888661, - "modified_timestamp": "2024-08-08T03:28:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3722.052, - "bitrate_kbps": 5362 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第09話 「ミッドナイト・イン・オフィス」 (1440x1080i x264-AAC)-DoA.mkv", @@ -15327,15 +8389,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 788205338, - "modified_timestamp": "2024-01-05T12:46:06+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.707, - "bitrate_kbps": 4537 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/Dark.Matter.S01E09.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV.mkv", @@ -15347,15 +8401,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4779374921, - "modified_timestamp": "2024-06-27T04:03:48+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3537.12, - "bitrate_kbps": 10809 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多高清剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.mkv", @@ -15365,15 +8411,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 636976, - "modified_timestamp": "2024-06-27T03:44:31+00:00", - "resolution": null, - "codec": null, - "duration_seconds": null, - "bitrate_kbps": null - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.DDHDTV.com】人生复本 第一季[第09集][简繁英字幕].Dark.Matter.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ZeroTV/【更多电视剧集下载请访问 www.DDHDTV.com】【更多剧集打包下载请访问 www.DDHDTV.com】.MKV", @@ -15383,15 +8421,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 636976, - "modified_timestamp": "2024-06-27T03:44:31+00:00", - "resolution": null, - "codec": null, - "duration_seconds": null, - "bitrate_kbps": null - } + "needs_review": true }, { "path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー 第01話「今こそ、家族を守れ 前代未聞の完全誘!?子供の未来の為に闘う家族の愛と絆の物語」 1080p HDTV x264 AAC.mkv", @@ -15401,15 +8431,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3244371722, - "modified_timestamp": "2022-05-17T12:23:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4145.024, - "bitrate_kbps": 6261 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/マイファミリー EP01 1080p HDTV x264 AAC/マイファミリー ナビ 1080p HDTV x264 AAC.mkv", @@ -15419,51 +8441,27 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1394811147, - "modified_timestamp": "2022-05-17T12:19:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1404.97, - "bitrate_kbps": 7942 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4", "filename": "[Nekomoe kissaten][Tantei wa Mou, Shindeiru. Yokoku][06][720p][JPTC].mp4", "category": "series", - "title": "[Tantei wa Mou, Shindeiru Yokoku][]", + "title": "[Tantei wa Mou, Shindeiru Yokoku][06][]", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 6439100, - "modified_timestamp": "2021-08-06T14:15:54+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 30.03, - "bitrate_kbps": 1715 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC]/[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4", "filename": "[Nekomoe kissaten][Tantei wa Mou, Shindeiru.][05][720p][JPTC].mp4", "category": "series", - "title": "[Tantei wa Mou, Shindeiru ][]", + "title": "[Tantei wa Mou, Shindeiru ][05][]", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 188989454, - "modified_timestamp": "2021-08-06T14:17:08+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1420.073333, - "bitrate_kbps": 1064 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E08.Typical.and.Ordinary.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15475,15 +8473,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1734833319, - "modified_timestamp": "2023-11-20T14:59:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2527.609, - "bitrate_kbps": 5490 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E04.The.Unexpected.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15495,15 +8485,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1891260364, - "modified_timestamp": "2023-11-20T14:59:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2737.527, - "bitrate_kbps": 5526 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E05.Meaningless.Kiss.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15515,15 +8497,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1989045514, - "modified_timestamp": "2023-11-20T14:59:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2861.275, - "bitrate_kbps": 5561 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E09.Doona.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15535,15 +8509,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1822105501, - "modified_timestamp": "2023-11-20T14:59:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2631.004, - "bitrate_kbps": 5540 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E02.Getting.to.Know.Each.Other.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15555,15 +8521,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2069821865, - "modified_timestamp": "2023-11-20T14:59:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2975.765, - "bitrate_kbps": 5564 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E07.Clear.the.Air.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15575,15 +8533,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1815043908, - "modified_timestamp": "2023-11-20T14:59:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2682.764, - "bitrate_kbps": 5412 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E03.Spring.Breeze.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15595,15 +8545,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2082051418, - "modified_timestamp": "2023-11-20T14:59:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2995.743, - "bitrate_kbps": 5560 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E01.An.Unexpected.Twist.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15615,15 +8557,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2047882565, - "modified_timestamp": "2023-11-20T14:59:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2944.4, - "bitrate_kbps": 5564 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Doona.S01.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Doona.S01E06.Twilight.Zone.1080p.NF.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -15635,15 +8569,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1989449580, - "modified_timestamp": "2023-11-20T14:59:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2872.87, - "bitrate_kbps": 5539 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/A.Shop.for.Killers.S01E02.Jeong.Jinman.Jeong.Jinman.Jeong.Jinman.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -15655,15 +8581,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2810294275, - "modified_timestamp": "2024-01-20T11:35:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3227.712, - "bitrate_kbps": 6965 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第11話(終) 「時をかけろ、恋人たち」 (1440x1080i x264-AAC)-DoA.mkv", @@ -15673,15 +8591,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 818940329, - "modified_timestamp": "2024-01-05T13:07:36+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1374.778, - "bitrate_kbps": 4765 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E01.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15693,15 +8603,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1397809445, - "modified_timestamp": "2023-05-24T13:05:51+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3514.656, - "bitrate_kbps": 3181 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E03.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15713,15 +8615,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1381559316, - "modified_timestamp": "2023-05-24T13:05:50+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3464.896, - "bitrate_kbps": 3189 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E02.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15733,15 +8627,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1328211571, - "modified_timestamp": "2023-05-24T13:05:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3358.56, - "bitrate_kbps": 3163 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E05.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15753,15 +8639,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1404943849, - "modified_timestamp": "2023-05-24T13:05:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3520.48, - "bitrate_kbps": 3192 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E10.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15773,15 +8651,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1414555144, - "modified_timestamp": "2023-05-24T13:05:50+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3549.088, - "bitrate_kbps": 3188 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E04.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15793,15 +8663,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1323083038, - "modified_timestamp": "2023-05-24T13:05:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3323.968, - "bitrate_kbps": 3184 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E07.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15813,15 +8675,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1270377625, - "modified_timestamp": "2023-05-24T13:05:33+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3203.648, - "bitrate_kbps": 3172 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E06.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15833,15 +8687,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1432268278, - "modified_timestamp": "2023-05-24T13:05:50+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3609.056, - "bitrate_kbps": 3174 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E09.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15853,15 +8699,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1296721442, - "modified_timestamp": "2023-05-24T13:05:47+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3263.392, - "bitrate_kbps": 3178 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/相对宇宙S02.Counterpart.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Counterpart.S02E08.2018.1080p.WEB-DL.x265.AC3£cXcY@FRDS.mkv", @@ -15873,15 +8711,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1296886427, - "modified_timestamp": "2023-05-24T13:05:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3264.0, - "bitrate_kbps": 3178 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E09.1997.720p.BluRay.x264-WiKi.mkv", @@ -15891,15 +8721,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1481245517, - "modified_timestamp": "2024-10-17T13:13:03+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2946.356, - "bitrate_kbps": 4021 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E01.1997.720p.BluRay.x264-WiKi.mkv", @@ -15909,15 +8731,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1918641434, - "modified_timestamp": "2024-10-17T12:51:47+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 3713.652, - "bitrate_kbps": 4133 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E11.1997.720p.BluRay.x264-WiKi.mkv", @@ -15927,15 +8741,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2182405639, - "modified_timestamp": "2024-10-17T13:16:57+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 4356.169, - "bitrate_kbps": 4007 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E05.1997.720p.BluRay.x264-WiKi.mkv", @@ -15945,15 +8751,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1422731365, - "modified_timestamp": "2024-10-17T13:04:37+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2864.798, - "bitrate_kbps": 3973 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E10.1997.720p.BluRay.x264-WiKi.mkv", @@ -15963,15 +8761,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1722691173, - "modified_timestamp": "2024-10-17T13:14:54+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 3736.414, - "bitrate_kbps": 3688 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E04.1997.720p.BluRay.x264-WiKi.mkv", @@ -15981,15 +8771,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1360410389, - "modified_timestamp": "2024-10-17T13:01:35+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2785.822, - "bitrate_kbps": 3906 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E08.1997.720p.BluRay.x264-WiKi.mkv", @@ -15999,15 +8781,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1368258252, - "modified_timestamp": "2024-10-17T13:10:54+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2783.198, - "bitrate_kbps": 3932 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E02.1997.720p.BluRay.x264-WiKi.mkv", @@ -16017,15 +8791,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1410110034, - "modified_timestamp": "2024-10-17T12:55:37+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2864.244, - "bitrate_kbps": 3938 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E06.1997.720p.BluRay.x264-WiKi.mkv", @@ -16035,15 +8801,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1423126683, - "modified_timestamp": "2024-10-17T13:07:34+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2766.217, - "bitrate_kbps": 4115 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E03.1997.720p.BluRay.x264-WiKi.mkv", @@ -16053,15 +8811,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1434491923, - "modified_timestamp": "2024-10-17T12:58:50+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2812.084, - "bitrate_kbps": 4080 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Love.Generation.1997.720p.BluRay.x264-WiKi/Love.Generation.E07.1997.720p.BluRay.x264-WiKi.mkv", @@ -16071,15 +8821,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1367078069, - "modified_timestamp": "2024-10-17T13:08:44+00:00", - "resolution": "944x720", - "codec": "h264", - "duration_seconds": 2718.921, - "bitrate_kbps": 4022 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第01話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16089,15 +8831,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4011504094, - "modified_timestamp": "2024-11-04T11:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4225.109, - "bitrate_kbps": 7595 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第09話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16107,15 +8841,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2689961154, - "modified_timestamp": "2024-11-04T11:36:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2798.634, - "bitrate_kbps": 7689 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第06話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16125,15 +8851,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2635825379, - "modified_timestamp": "2024-11-04T11:30:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2783.85, - "bitrate_kbps": 7574 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第10話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16143,15 +8861,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2678764930, - "modified_timestamp": "2024-11-04T11:39:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2788.138, - "bitrate_kbps": 7686 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第08話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16161,15 +8871,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2683499777, - "modified_timestamp": "2024-11-04T11:34:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.103, - "bitrate_kbps": 7669 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第07話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16179,15 +8881,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2682465534, - "modified_timestamp": "2024-11-04T11:32:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.466, - "bitrate_kbps": 7665 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第04話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16197,15 +8891,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2670102465, - "modified_timestamp": "2024-11-04T11:25:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2784.319, - "bitrate_kbps": 7671 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第03話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16215,15 +8901,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2693732398, - "modified_timestamp": "2024-11-04T11:24:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.765, - "bitrate_kbps": 7697 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16233,15 +8911,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2668262246, - "modified_timestamp": "2024-11-04T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.999, - "bitrate_kbps": 7623 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16251,15 +8921,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3979194519, - "modified_timestamp": "2024-11-04T11:40:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4152.895, - "bitrate_kbps": 7665 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv", @@ -16269,15 +8931,167 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2668983508, - "modified_timestamp": "2024-11-04T11:20:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.999, - "bitrate_kbps": 7625 - } + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E08.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E08.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E08 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E09.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E09.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E09 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E10.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E10.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E10 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E06.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E06.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E06 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E07.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E07.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E07 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E11.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E11.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E11 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E05.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E05.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E05 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E13.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E13.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E13 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E12.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E12.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E12 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E04.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E04.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E04 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E01.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E01.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E01 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E16.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E16.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E16 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E14.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E14.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E14 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E02.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E02.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E02 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E03.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E03.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E03 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true + }, + { + "path": "/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E15.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "filename": "When.Life.Gives.You.Tangerines.E15.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv", + "category": "series", + "title": "When Life Gives You Tangerines E15 2025 NF £cXcY@FRDS", + "season": null, + "episodes": [], + "confidence": 0.3, + "needs_review": true }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16289,15 +9103,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3097440685, - "modified_timestamp": "2026-01-17T12:14:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4856.918, - "bitrate_kbps": 5101 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E12.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16309,15 +9115,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2940702325, - "modified_timestamp": "2026-01-17T12:15:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4611.926, - "bitrate_kbps": 5101 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16329,15 +9127,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2752522398, - "modified_timestamp": "2026-01-17T12:13:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4319.616, - "bitrate_kbps": 5097 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16349,15 +9139,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2402662807, - "modified_timestamp": "2026-01-17T12:10:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3769.259, - "bitrate_kbps": 5099 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E11.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16369,15 +9151,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2688669490, - "modified_timestamp": "2026-01-17T12:15:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4217.728, - "bitrate_kbps": 5099 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16389,15 +9163,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3029174861, - "modified_timestamp": "2026-01-17T12:11:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4749.27, - "bitrate_kbps": 5102 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16409,15 +9175,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2883215489, - "modified_timestamp": "2026-01-17T12:12:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4507.606, - "bitrate_kbps": 5117 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16429,15 +9187,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2731733537, - "modified_timestamp": "2026-01-17T12:13:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4282.582, - "bitrate_kbps": 5102 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16449,15 +9199,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2648226617, - "modified_timestamp": "2026-01-17T12:14:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4151.254, - "bitrate_kbps": 5103 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16469,15 +9211,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3075917030, - "modified_timestamp": "2026-01-17T12:12:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4856.662, - "bitrate_kbps": 5066 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16489,15 +9223,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2806187873, - "modified_timestamp": "2026-01-17T12:11:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4401.323, - "bitrate_kbps": 5100 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -16509,15 +9235,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2345324592, - "modified_timestamp": "2026-01-17T12:14:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3681.75, - "bitrate_kbps": 5096 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E07.In.the.Fires.of.Dead.Stars.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -16529,15 +9247,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4167761088, - "modified_timestamp": "2024-06-12T14:27:38+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3073.195, - "bitrate_kbps": 10849 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16549,15 +9259,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2964727901, - "modified_timestamp": "2023-11-03T21:50:51+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3748.608, - "bitrate_kbps": 6327 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E07.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16569,15 +9271,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3155714089, - "modified_timestamp": "2023-11-03T21:50:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4004.736, - "bitrate_kbps": 6303 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E06.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16589,15 +9283,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2765654385, - "modified_timestamp": "2023-11-03T21:51:04+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3510.144, - "bitrate_kbps": 6303 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E03.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16609,15 +9295,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2594601424, - "modified_timestamp": "2023-11-03T21:50:38+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3296.256, - "bitrate_kbps": 6297 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E05.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16629,15 +9307,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2797080290, - "modified_timestamp": "2023-11-03T21:50:34+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3544.32, - "bitrate_kbps": 6313 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E08.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16649,15 +9319,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2880654616, - "modified_timestamp": "2023-11-03T21:50:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3772.416, - "bitrate_kbps": 6108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E02.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16669,15 +9331,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2819882823, - "modified_timestamp": "2023-11-03T21:50:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3574.272, - "bitrate_kbps": 6311 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E10.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16689,15 +9343,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3233393179, - "modified_timestamp": "2023-11-03T21:50:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4159.104, - "bitrate_kbps": 6219 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E09.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16709,15 +9355,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2875538079, - "modified_timestamp": "2023-11-03T21:49:51+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3654.528, - "bitrate_kbps": 6294 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Juvenile.Justice.S01.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV/Juvenile.Justice.S01E04.2022.Netflix.WEB-DL.1080p.HEVC.DV.DDP-HDCTV.mp4", @@ -16729,15 +9367,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2859273483, - "modified_timestamp": "2023-11-03T21:51:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3626.496, - "bitrate_kbps": 6307 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16749,15 +9379,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1906133345, - "modified_timestamp": "2022-05-23T15:38:53+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3473.178, - "bitrate_kbps": 4390 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16769,15 +9391,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2092113155, - "modified_timestamp": "2022-05-23T15:35:19+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3814.269, - "bitrate_kbps": 4387 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16789,15 +9403,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1815037540, - "modified_timestamp": "2022-05-23T15:39:00+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3305.97, - "bitrate_kbps": 4392 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16809,15 +9415,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2085988731, - "modified_timestamp": "2022-05-23T15:35:31+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3800.213, - "bitrate_kbps": 4391 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16829,15 +9427,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1780985263, - "modified_timestamp": "2022-05-23T15:36:22+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3244.575, - "bitrate_kbps": 4391 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16849,15 +9439,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2115001665, - "modified_timestamp": "2022-05-23T15:36:05+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3853.517, - "bitrate_kbps": 4390 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16869,15 +9451,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1809680058, - "modified_timestamp": "2022-05-23T15:35:39+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3296.669, - "bitrate_kbps": 4391 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/东京罪恶S01.Tokyo.Vice.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Tokyo.Vice.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -16889,15 +9463,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1820192055, - "modified_timestamp": "2022-05-23T15:39:06+00:00", - "resolution": "1920x960", - "codec": "hevc", - "duration_seconds": 3314.853, - "bitrate_kbps": 4392 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E09.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -16909,15 +9475,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2780612563, - "modified_timestamp": "2025-04-06T15:50:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2725.12, - "bitrate_kbps": 8162 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E07.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -16929,15 +9487,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2902783548, - "modified_timestamp": "2025-04-06T15:48:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.072, - "bitrate_kbps": 8428 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E08.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -16949,15 +9499,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2889790598, - "modified_timestamp": "2025-04-06T15:50:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.072, - "bitrate_kbps": 8391 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E06.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -16969,15 +9511,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2692817139, - "modified_timestamp": "2025-04-06T15:46:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.03, - "bitrate_kbps": 7819 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E05.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -16989,15 +9523,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2927861566, - "modified_timestamp": "2025-04-06T15:45:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.072, - "bitrate_kbps": 8501 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E04.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -17009,15 +9535,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2763496344, - "modified_timestamp": "2025-04-06T15:42:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.2, - "bitrate_kbps": 8024 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E02.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -17029,15 +9547,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2774417436, - "modified_timestamp": "2025-04-06T15:36:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2750.251, - "bitrate_kbps": 8070 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E03.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -17049,15 +9559,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2869133659, - "modified_timestamp": "2025-04-06T15:40:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.2, - "bitrate_kbps": 8330 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E10.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -17069,15 +9571,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2785986239, - "modified_timestamp": "2025-04-06T15:44:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2725.206, - "bitrate_kbps": 8178 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/热点.The.Hot.Spot.2025.S01.1080p.NF.WEB-DL.x264.AAC-PTerWEB/The.Hot.Spot.2025.S01E01.1080p.NF.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -17089,15 +9583,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2907208205, - "modified_timestamp": "2025-04-06T15:31:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.072, - "bitrate_kbps": 8441 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17109,15 +9595,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1302058242, - "modified_timestamp": "2023-02-21T01:47:18+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2815.072, - "bitrate_kbps": 3700 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17129,15 +9607,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1301909055, - "modified_timestamp": "2023-02-21T01:47:21+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2814.08, - "bitrate_kbps": 3701 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17149,15 +9619,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1652777373, - "modified_timestamp": "2023-02-21T01:47:21+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3412.064, - "bitrate_kbps": 3875 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17169,15 +9631,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1289064282, - "modified_timestamp": "2023-02-21T01:47:20+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2815.072, - "bitrate_kbps": 3663 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17189,15 +9643,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1327089165, - "modified_timestamp": "2023-02-21T01:47:19+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2801.056, - "bitrate_kbps": 3790 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17209,15 +9655,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1261779769, - "modified_timestamp": "2023-02-21T01:47:08+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2815.072, - "bitrate_kbps": 3585 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17229,15 +9667,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1259674888, - "modified_timestamp": "2023-02-21T01:47:12+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2814.08, - "bitrate_kbps": 3581 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17249,15 +9679,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1292313184, - "modified_timestamp": "2023-02-21T01:47:21+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2815.072, - "bitrate_kbps": 3672 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17269,15 +9691,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1246299387, - "modified_timestamp": "2023-02-21T01:47:20+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2813.088, - "bitrate_kbps": 3544 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17289,15 +9703,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1314022884, - "modified_timestamp": "2023-02-21T01:47:19+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2801.056, - "bitrate_kbps": 3752 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Love.Complex.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Love.Complex.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -17309,15 +9715,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1278530159, - "modified_timestamp": "2023-02-21T01:47:24+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2815.072, - "bitrate_kbps": 3633 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E01.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17327,15 +9725,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1435678481, - "modified_timestamp": "2023-01-20T11:10:27+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2636.69551, - "bitrate_kbps": 4355 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E03.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17345,15 +9735,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1311860164, - "modified_timestamp": "2023-01-20T11:10:24+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2393.396825, - "bitrate_kbps": 4384 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E02.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17363,15 +9745,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1342668526, - "modified_timestamp": "2023-01-20T11:10:25+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2507.964082, - "bitrate_kbps": 4282 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E04.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17381,15 +9755,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1206229469, - "modified_timestamp": "2023-01-20T11:10:24+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2267.544671, - "bitrate_kbps": 4255 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E05.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17399,15 +9765,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1259052190, - "modified_timestamp": "2023-01-20T11:10:25+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2327.035356, - "bitrate_kbps": 4328 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E08.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17417,15 +9775,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1482493628, - "modified_timestamp": "2023-01-20T11:10:24+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2545.905488, - "bitrate_kbps": 4658 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E06.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17435,15 +9785,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1382970640, - "modified_timestamp": "2023-01-20T11:10:25+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2434.681905, - "bitrate_kbps": 4544 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Weak.Hero.Class.1.2022.WEB-DL.4K.H265.AAC-HDCTV/Weak.Hero.Class.1.2022.E07.WEB-DL.4K.H265.AAC-HDCTV.mp4", @@ -17453,15 +9795,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1200216282, - "modified_timestamp": "2023-01-20T11:10:23+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2182.907937, - "bitrate_kbps": 4398 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E06.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17473,15 +9807,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1097394497, - "modified_timestamp": "2025-01-16T01:27:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2745.713, - "bitrate_kbps": 3197 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E02.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17493,15 +9819,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1104016774, - "modified_timestamp": "2025-01-16T01:27:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2746.735, - "bitrate_kbps": 3215 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E03.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17513,15 +9831,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1097911111, - "modified_timestamp": "2025-01-16T01:26:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2746.735, - "bitrate_kbps": 3197 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E07.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17533,15 +9843,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1097276691, - "modified_timestamp": "2025-01-16T01:27:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2746.735, - "bitrate_kbps": 3195 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E10.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17553,15 +9855,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1094006423, - "modified_timestamp": "2025-01-16T01:27:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2721.704, - "bitrate_kbps": 3215 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17573,15 +9867,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1366426070, - "modified_timestamp": "2025-01-16T01:27:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3391.297, - "bitrate_kbps": 3223 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E08.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17593,15 +9879,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1098715115, - "modified_timestamp": "2025-01-16T01:26:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2735.705, - "bitrate_kbps": 3212 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E05.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17613,15 +9891,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1104236025, - "modified_timestamp": "2025-01-16T01:23:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2746.735, - "bitrate_kbps": 3216 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E04.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17633,15 +9903,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1101403508, - "modified_timestamp": "2025-01-16T01:27:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2744.715, - "bitrate_kbps": 3210 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E09.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17653,15 +9915,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1102995989, - "modified_timestamp": "2025-01-16T01:26:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2746.735, - "bitrate_kbps": 3212 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/春天来临时.When.Spring.Comes.2024.S01.1080p.KKTV.WEB-DL.H264.AAC-YingWEB/When.Spring.Comes.2024.S01E11.1080p.KKTV.WEB-DL.H264.AAC-YingWEB.mkv", @@ -17673,15 +9927,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1102114708, - "modified_timestamp": "2025-01-16T01:25:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2705.682, - "bitrate_kbps": 3258 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP06 720p HDTV x264 AAC-DoA.mkv", @@ -17691,15 +9937,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1801059536, - "modified_timestamp": "2024-01-12T12:14:40+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3109.809, - "bitrate_kbps": 4633 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE10 「真犯人」 End 720p HDTV x264 AAC-DoA.mkv", @@ -17709,15 +9947,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 787917001, - "modified_timestamp": "2019-01-01T04:15:56+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2880.064, - "bitrate_kbps": 2188 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE6 「バブル」 720p HDTV x264 AAC-DoA.mkv", @@ -17727,15 +9957,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1288925785, - "modified_timestamp": "2019-01-01T04:15:52+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.93, - "bitrate_kbps": 3543 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE2 「名前のない殺人者」 720p HDTV x264 AAC-DoA.mkv", @@ -17745,15 +9967,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 817186329, - "modified_timestamp": "2019-01-01T04:15:54+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2820.032, - "bitrate_kbps": 2318 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE3 「PKO」 720p HDTV x264 AAC-DoA.mkv", @@ -17763,15 +9977,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1016435700, - "modified_timestamp": "2019-01-01T04:15:55+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.952, - "bitrate_kbps": 2794 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE8 「17歳の母」 720p HDTV x264 AAC-DoA.mkv", @@ -17781,15 +9987,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1320439680, - "modified_timestamp": "2019-01-01T04:15:54+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.994, - "bitrate_kbps": 3630 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE1 「学生運動」 720p HDTV x264 AAC-DoA.mkv", @@ -17799,15 +9997,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1156624880, - "modified_timestamp": "2019-01-01T04:15:53+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2919.957, - "bitrate_kbps": 3168 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE4 「執行」 720p HDTV x264 AAC-DoA.mkv", @@ -17817,15 +10007,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1047311854, - "modified_timestamp": "2019-01-01T04:15:52+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.994, - "bitrate_kbps": 2879 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE5 「指輪」 720p HDTV x264 AAC-DoA.mkv", @@ -17835,15 +10017,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 806858818, - "modified_timestamp": "2019-01-01T04:15:48+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.952, - "bitrate_kbps": 2218 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE7 「光と影」 720p HDTV x264 AAC-DoA.mkv", @@ -17853,15 +10027,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1223268106, - "modified_timestamp": "2019-01-01T04:15:55+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.994, - "bitrate_kbps": 3362 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW コールドケース2 ~真実の扉~ Complete 720p HDTV x264 AAC-DoA/連続ドラマW コールドケース2 ~真実の扉~ CASE9 「シベリアの涙」 720p HDTV x264 AAC-DoA.mkv", @@ -17871,15 +10037,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1299489023, - "modified_timestamp": "2019-01-01T04:15:53+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2909.973, - "bitrate_kbps": 3572 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/好久没做.Long.time.no.sex.S01E01.2024.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -17891,15 +10049,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3347592060, - "modified_timestamp": "2024-01-29T13:51:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3458.788, - "bitrate_kbps": 7742 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Chokotto.Kyoto.ni.Sundemita.SP.2019.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -17909,15 +10059,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5415069077, - "modified_timestamp": "2022-05-24T04:12:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4440.096, - "bitrate_kbps": 9756 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【24年日剧】【追踪者游戏W 职权骚扰的上司是我的前女友】【01】【1080P】【中日双语】.mp4", @@ -17927,15 +10069,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 546202718, - "modified_timestamp": "2024-01-16T05:47:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1394.88, - "bitrate_kbps": 3132 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Reacher.S03E04.Dominique.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -17947,15 +10081,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3203583792, - "modified_timestamp": "2025-03-16T01:05:12+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3159.24, - "bitrate_kbps": 8112 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S03E06.Smoke.on.the.Water.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -17967,15 +10093,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3419040597, - "modified_timestamp": "2025-03-16T00:55:34+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2898.187, - "bitrate_kbps": 9437 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -17987,15 +10105,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2032997018, - "modified_timestamp": "2021-10-19T11:00:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2783.648, - "bitrate_kbps": 5842 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18007,15 +10117,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2226701458, - "modified_timestamp": "2021-10-19T11:00:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2989.856, - "bitrate_kbps": 5958 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18027,15 +10129,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2451562958, - "modified_timestamp": "2021-10-19T11:00:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3247.904, - "bitrate_kbps": 6038 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18047,15 +10141,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2193517006, - "modified_timestamp": "2021-10-19T11:00:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3045.92, - "bitrate_kbps": 5761 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18067,15 +10153,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1899203324, - "modified_timestamp": "2021-10-19T11:00:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2727.584, - "bitrate_kbps": 5570 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18087,15 +10165,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2141308089, - "modified_timestamp": "2021-10-19T11:00:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2847.776, - "bitrate_kbps": 6015 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18107,15 +10177,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2034468568, - "modified_timestamp": "2021-10-19T11:00:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2793.632, - "bitrate_kbps": 5826 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Name.S01.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV/My.Name.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.HDR.DDP-HDCTV.mkv", @@ -18127,15 +10189,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2607252912, - "modified_timestamp": "2021-10-19T11:00:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3512.096, - "bitrate_kbps": 5938 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E04.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18147,15 +10201,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5344653360, - "modified_timestamp": "2025-03-27T13:57:16+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3577.6, - "bitrate_kbps": 11951 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E08.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18167,15 +10213,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5703945858, - "modified_timestamp": "2025-03-27T14:10:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3803.84, - "bitrate_kbps": 11996 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E12.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18187,15 +10225,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5340448863, - "modified_timestamp": "2025-03-27T14:20:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3560.608, - "bitrate_kbps": 11998 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E09.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18207,15 +10237,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4383692528, - "modified_timestamp": "2025-03-27T14:14:14+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2969.408, - "bitrate_kbps": 11810 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18227,15 +10249,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5144568920, - "modified_timestamp": "2025-03-27T13:43:30+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3453.472, - "bitrate_kbps": 11917 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E05.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18247,15 +10261,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5559862759, - "modified_timestamp": "2025-03-27T14:00:54+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3702.912, - "bitrate_kbps": 12011 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E10.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18267,15 +10273,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5150422761, - "modified_timestamp": "2025-03-27T14:15:35+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3456.48, - "bitrate_kbps": 11920 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E03.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18287,15 +10285,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5684069135, - "modified_timestamp": "2025-03-27T13:54:20+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3793.824, - "bitrate_kbps": 11985 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E07.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18307,15 +10297,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5835172694, - "modified_timestamp": "2025-03-27T14:07:27+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3881.92, - "bitrate_kbps": 12025 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E02.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18327,15 +10309,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4828100990, - "modified_timestamp": "2025-03-27T13:49:37+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3245.28, - "bitrate_kbps": 11901 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E06.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18347,15 +10321,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5114319564, - "modified_timestamp": "2025-03-27T14:03:48+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3437.664, - "bitrate_kbps": 11901 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E11.2160p.NF.WEB-DL.H.265.DDP5.1.Atmos-ADWeb.mkv", @@ -18367,15 +10333,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5762729218, - "modified_timestamp": "2025-03-27T14:18:48+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3819.104, - "bitrate_kbps": 12071 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第2話 「舅 VS 夫」 1080p HDTV x264 AAC.mkv", @@ -18385,15 +10343,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3459847345, - "modified_timestamp": "2023-12-29T17:21:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.706, - "bitrate_kbps": 8900 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第7話 「下僕の逆襲」 1080p HDTV x264 AAC.mkv", @@ -18403,15 +10353,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3499986852, - "modified_timestamp": "2023-12-29T17:21:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.717, - "bitrate_kbps": 9004 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第6話 「後継者は君だ」 1080p HDTV x264 AAC.mkv", @@ -18421,15 +10363,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3578424649, - "modified_timestamp": "2023-12-29T17:21:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3110.25, - "bitrate_kbps": 9204 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第10話 「クリスマスの奇跡」 End 1080p HDTV x264 AAC.mkv", @@ -18439,15 +10373,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3622351241, - "modified_timestamp": "2023-12-29T17:21:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3079.68, - "bitrate_kbps": 9409 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第5話 「鬼怒川の晴れ女」 1080p HDTV x264 AAC.mkv", @@ -18457,15 +10383,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3823867168, - "modified_timestamp": "2023-12-29T17:21:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.706, - "bitrate_kbps": 9837 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第8話 「シン・嫉妬怪獣」 1080p HDTV x264 AAC.mkv", @@ -18475,15 +10393,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3675800793, - "modified_timestamp": "2023-12-29T17:21:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.653, - "bitrate_kbps": 9456 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第4話 「母の仕事 子知らず」 1080p HDTV x264 AAC.mkv", @@ -18493,15 +10403,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3462148188, - "modified_timestamp": "2023-12-29T17:21:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.674, - "bitrate_kbps": 8906 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第9話 「最終兵器チョーさん」 1080p HDTV x264 AAC.mkv", @@ -18511,15 +10413,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3515275005, - "modified_timestamp": "2023-12-29T17:21:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3079.81, - "bitrate_kbps": 9131 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第1話 「戦力外の男たち」 1080p HDTV x264 AAC.mkv", @@ -18529,15 +10423,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3345181860, - "modified_timestamp": "2023-12-29T17:21:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.706, - "bitrate_kbps": 8605 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/コタツがない家 Complete 1080p HDTV x264 AAC/コタツがない家 第3話 「ダメ夫 働く」 1080p HDTV x264 AAC.mkv", @@ -18547,15 +10433,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3421295491, - "modified_timestamp": "2023-12-29T17:21:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3109.717, - "bitrate_kbps": 8801 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shinhannin.Flag.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Shinhannin.Flag.E10.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -18565,15 +10443,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1106176352, - "modified_timestamp": "2022-01-03T14:16:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2747.153, - "bitrate_kbps": 3221 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/RoOT 第05話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -18583,15 +10453,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 559244152, - "modified_timestamp": "2024-05-21T14:58:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.055, - "bitrate_kbps": 3207 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E05.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18603,15 +10465,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 676795189, - "modified_timestamp": "2025-12-11T09:47:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3080.0, - "bitrate_kbps": 1757 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18623,15 +10477,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 823610393, - "modified_timestamp": "2025-12-11T09:45:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2645.024, - "bitrate_kbps": 2491 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E08.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18643,15 +10489,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 774890974, - "modified_timestamp": "2025-12-11T09:48:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3256.0, - "bitrate_kbps": 1903 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E04.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18663,15 +10501,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 810088626, - "modified_timestamp": "2025-12-11T09:47:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3001.024, - "bitrate_kbps": 2159 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E06.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18683,15 +10513,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 766329875, - "modified_timestamp": "2025-12-11T09:48:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2673.024, - "bitrate_kbps": 2293 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E02.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18703,15 +10525,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 863778543, - "modified_timestamp": "2025-12-11T09:45:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2935.008, - "bitrate_kbps": 2354 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E07.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18723,15 +10537,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 962749739, - "modified_timestamp": "2025-12-11T09:48:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3165.024, - "bitrate_kbps": 2433 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/All.Her.Fault.S01.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb/All.Her.Fault.S01E03.1080p.MAX.WEB-DL.H.264.DDP5.1-ADWeb.mkv", @@ -18743,15 +10549,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 951012442, - "modified_timestamp": "2025-12-11T09:46:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3046.016, - "bitrate_kbps": 2497 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第07話「お前たちが決めろ! 乱闘事件で部を追放!?涙のミーティング!」720p HDTV x264 AAC-DoA.mkv", @@ -18761,15 +10559,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1059421478, - "modified_timestamp": "2022-10-04T02:48:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3029.93, - "bitrate_kbps": 2797 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第05話「消えた部員から届いた謎の伝言!宅配ピザ救出作戦!?」720p HDTV x264 AAC-DoA.mkv", @@ -18779,15 +10569,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1198842364, - "modified_timestamp": "2022-10-04T02:48:12+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3029.93, - "bitrate_kbps": 3165 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第06話「亡き妻から宅配ピザ注文!?俺の名を呼んでくれ...奇跡の再会!」720p HDTV x264 AAC-DoA.mkv", @@ -18797,15 +10579,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1290105841, - "modified_timestamp": "2022-10-04T02:48:16+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3029.93, - "bitrate_kbps": 3406 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第01話「伝説の男、母校へ…弱小チームを導く!」720p HDTV x264 AAC-DoA.mkv", @@ -18815,15 +10589,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1169647302, - "modified_timestamp": "2022-10-04T02:00:54+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3479.913, - "bitrate_kbps": 2688 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第03話「コーチ助けて...女子部員の危機!母の敵をKOせよ!?」720p HDTV x264 AAC-DoA.mkv", @@ -18833,15 +10599,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 978418651, - "modified_timestamp": "2022-10-04T02:48:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2730.03, - "bitrate_kbps": 2867 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第08話「逆プロポーズは突然に!? ついに決断の時...別れまでの7日間!」720p HDTV x264 AAC-DoA.mkv", @@ -18851,15 +10609,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1134266834, - "modified_timestamp": "2022-10-04T02:48:10+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3254.821, - "bitrate_kbps": 2787 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第04話「リングの中心で、愛を叫ぶ!?型破りな恋愛指導で、衝撃結末!」720p HDTV x264 AAC-DoA.mkv", @@ -18869,15 +10619,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1234020491, - "modified_timestamp": "2022-10-04T02:48:12+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3029.93, - "bitrate_kbps": 3258 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第09話「お前たちをインターハイに連れていく... 涙の決勝戦!」END 720p HDTV x264 AAC-DoA.mkv", @@ -18887,15 +10629,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1504460401, - "modified_timestamp": "2022-10-04T02:48:12+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3494.928, - "bitrate_kbps": 3443 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/未来への10カウント Complete 720p HDTV x264 AAC-DoA/未来への10カウント 第02話「型破り監督最弱チームに奇跡を!18年ぶり焼鳥授業!?」720p HDTV x264 AAC-DoA.mkv", @@ -18905,15 +10639,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1150992068, - "modified_timestamp": "2022-10-04T02:12:07+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3254.888, - "bitrate_kbps": 2828 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E02.2014.720p.BluRay.x264-WiKi.mkv", @@ -18923,15 +10649,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 5746486838, - "modified_timestamp": "2024-04-25T14:04:37+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 7335.296, - "bitrate_kbps": 6267 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Sample/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.sample.mkv", @@ -18941,15 +10659,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 55056031, - "modified_timestamp": "2024-04-25T14:03:44+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 48.87, - "bitrate_kbps": 9012 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Miyamoto.Musashi.2014.720p.BluRay.x264-WiKi/Miyamoto.Musashi.E01.2014.720p.BluRay.x264-WiKi.mkv", @@ -18959,15 +10669,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 6055346989, - "modified_timestamp": "2024-04-25T14:04:36+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 7080.512, - "bitrate_kbps": 6841 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E08.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -18979,15 +10681,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5498435801, - "modified_timestamp": "2024-10-22T14:04:21+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3643.584, - "bitrate_kbps": 12072 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E02.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -18999,15 +10693,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4698260313, - "modified_timestamp": "2024-10-22T13:18:37+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3047.36, - "bitrate_kbps": 12333 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E03.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19019,15 +10705,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4026526717, - "modified_timestamp": "2024-10-22T13:25:22+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2639.936, - "bitrate_kbps": 12201 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19039,15 +10717,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5325058468, - "modified_timestamp": "2024-10-22T13:11:44+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3458.688, - "bitrate_kbps": 12316 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E04.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19059,15 +10729,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3859041141, - "modified_timestamp": "2024-10-22T13:32:41+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2543.424, - "bitrate_kbps": 12138 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E05.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19079,15 +10741,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4365482564, - "modified_timestamp": "2024-10-22T13:41:10+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2787.904, - "bitrate_kbps": 12526 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E07.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19099,15 +10753,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4540993156, - "modified_timestamp": "2024-10-22T13:55:41+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2965.984, - "bitrate_kbps": 12248 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Berlin.S01.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/Berlin.S01E06.2023.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -19119,15 +10765,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3765386490, - "modified_timestamp": "2024-10-22T13:47:53+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2518.56, - "bitrate_kbps": 11960 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E08.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19139,15 +10777,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1440610290, - "modified_timestamp": "2025-03-04T10:19:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5290.272, - "bitrate_kbps": 2178 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E02.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19159,15 +10789,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1408227468, - "modified_timestamp": "2025-03-04T10:10:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4948.64, - "bitrate_kbps": 2276 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E04.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19179,15 +10801,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1711648416, - "modified_timestamp": "2025-03-04T10:15:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4773.28, - "bitrate_kbps": 2868 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E12.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19199,15 +10813,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5032477923, - "modified_timestamp": "2025-03-04T10:08:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6796.32, - "bitrate_kbps": 5923 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E09.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19219,15 +10825,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1642171007, - "modified_timestamp": "2025-03-04T10:21:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4580.64, - "bitrate_kbps": 2868 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E03.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19239,15 +10837,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2498581133, - "modified_timestamp": "2025-03-04T10:12:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5295.392, - "bitrate_kbps": 3774 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E05.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19259,15 +10849,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1433876892, - "modified_timestamp": "2025-03-04T10:15:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4384.416, - "bitrate_kbps": 2616 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E11.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19279,15 +10861,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1573666982, - "modified_timestamp": "2025-03-04T10:23:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5280.416, - "bitrate_kbps": 2384 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E06.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19299,15 +10873,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1611373014, - "modified_timestamp": "2025-03-04T10:17:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4927.008, - "bitrate_kbps": 2616 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E10.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19319,15 +10885,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1495434251, - "modified_timestamp": "2025-03-04T10:22:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5496.352, - "bitrate_kbps": 2176 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E07.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19339,15 +10897,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1442164372, - "modified_timestamp": "2025-03-04T10:17:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5064.096, - "bitrate_kbps": 2278 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hospital.Playlist.S01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY/Hospital.Playlist.S01E01.2020.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -19359,15 +10909,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1482762635, - "modified_timestamp": "2025-03-04T10:24:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4971.04, - "bitrate_kbps": 2386 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Hot.Spot.S01.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb/The.Hot.Spot.S01E04.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", @@ -19379,15 +10921,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2762801176, - "modified_timestamp": "2025-03-13T11:54:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.2, - "bitrate_kbps": 8022 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Hot.Spot.S01.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb/The.Hot.Spot.S01E03.2025.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", @@ -19399,15 +10933,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2822055341, - "modified_timestamp": "2025-03-13T11:50:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.2, - "bitrate_kbps": 8194 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19417,15 +10943,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 919976586, - "modified_timestamp": "2021-08-08T16:52:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2303.424, - "bitrate_kbps": 3195 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP02.中日双语.1920X1080.HDTVrip-幻月字幕组V2.mp4", @@ -19435,15 +10953,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 999369331, - "modified_timestamp": "2021-08-08T16:53:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2553.951667, - "bitrate_kbps": 3130 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP04.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19453,15 +10963,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 907563325, - "modified_timestamp": "2021-08-08T16:52:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2318.784, - "bitrate_kbps": 3131 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP05.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19471,15 +10973,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 921245882, - "modified_timestamp": "2021-08-08T16:54:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2306.688, - "bitrate_kbps": 3195 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP06.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19489,15 +10983,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 925810021, - "modified_timestamp": "2021-08-08T16:53:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2318.229333, - "bitrate_kbps": 3194 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP07.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19507,15 +10993,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 925835256, - "modified_timestamp": "2021-08-08T16:54:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2318.315, - "bitrate_kbps": 3194 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP01.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19525,15 +11003,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 998681896, - "modified_timestamp": "2021-08-08T16:53:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2551.936, - "bitrate_kbps": 3130 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP03.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19543,15 +11013,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 907142997, - "modified_timestamp": "2021-08-08T16:53:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2318.015, - "bitrate_kbps": 3130 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/主厨是名侦探.EP01-EP09.END.中日双语.1920X1080.HDTVrip-幻月字幕组/主厨是名侦探.EP08.中日双语.1920X1080.HDTVrip-幻月字幕组.mp4", @@ -19561,15 +11023,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 925950183, - "modified_timestamp": "2021-08-08T16:54:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2318.181667, - "bitrate_kbps": 3195 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shogun.2024.S01E05.Broken.to.the.Fist.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -19581,15 +11035,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2919358859, - "modified_timestamp": "2024-03-19T11:00:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3375.552, - "bitrate_kbps": 6918 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E03.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19601,15 +11047,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2170174500, - "modified_timestamp": "2023-04-11T15:14:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2837.36, - "bitrate_kbps": 6118 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E06.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19621,15 +11059,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2137889427, - "modified_timestamp": "2023-04-11T15:15:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2800.64, - "bitrate_kbps": 6106 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E08.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19641,15 +11071,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2124403690, - "modified_timestamp": "2023-04-11T15:15:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.6, - "bitrate_kbps": 6112 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E05.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19661,15 +11083,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2099613954, - "modified_timestamp": "2023-04-11T15:15:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2744.08, - "bitrate_kbps": 6121 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19681,15 +11095,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2053505807, - "modified_timestamp": "2023-04-11T15:14:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2681.44, - "bitrate_kbps": 6126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E02.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19701,15 +11107,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2126176913, - "modified_timestamp": "2023-04-11T15:14:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2778.08, - "bitrate_kbps": 6122 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E07.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19721,15 +11119,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2145986244, - "modified_timestamp": "2023-04-11T15:15:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2802.88, - "bitrate_kbps": 6125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Swarm.S01.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS/The.Swarm.S01E04.1080p.SRF.WEB-DL.AAC2.0.H.264-KORPOS.mkv", @@ -19741,15 +11131,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2008417441, - "modified_timestamp": "2023-04-11T15:15:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2627.92, - "bitrate_kbps": 6114 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E12.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19761,15 +11143,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2184524171, - "modified_timestamp": "2025-12-07T14:34:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3121.152, - "bitrate_kbps": 5599 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19781,15 +11155,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2182089726, - "modified_timestamp": "2025-12-07T14:34:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3113.728, - "bitrate_kbps": 5606 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E05.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19801,15 +11167,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2038722476, - "modified_timestamp": "2025-12-07T14:34:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2938.976, - "bitrate_kbps": 5549 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E09.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19821,15 +11179,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1947807465, - "modified_timestamp": "2025-12-07T14:32:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2795.808, - "bitrate_kbps": 5573 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19841,15 +11191,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2137584120, - "modified_timestamp": "2025-12-07T14:35:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3075.808, - "bitrate_kbps": 5559 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19861,15 +11203,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2166929867, - "modified_timestamp": "2025-12-07T14:35:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3117.152, - "bitrate_kbps": 5561 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E08.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19881,15 +11215,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2319441796, - "modified_timestamp": "2025-12-07T14:35:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3312.576, - "bitrate_kbps": 5601 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E10.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19901,15 +11227,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1950766528, - "modified_timestamp": "2025-12-07T14:35:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2790.848, - "bitrate_kbps": 5591 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E07.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19921,15 +11239,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2106457459, - "modified_timestamp": "2025-12-07T14:36:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3068.928, - "bitrate_kbps": 5491 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19941,15 +11251,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2524990094, - "modified_timestamp": "2025-12-07T14:35:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3604.128, - "bitrate_kbps": 5604 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E11.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19961,15 +11263,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2161367717, - "modified_timestamp": "2025-12-07T14:35:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3091.456, - "bitrate_kbps": 5593 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[认罪之罪].The.Price.of.Confession.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[认罪之罪].The.Price.of.Confession.2025.S01E06.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -19981,15 +11275,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2300124392, - "modified_timestamp": "2025-12-07T14:35:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3275.168, - "bitrate_kbps": 5618 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E16.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -20001,15 +11287,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3525645811, - "modified_timestamp": "2025-05-17T16:32:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5134.176, - "bitrate_kbps": 5493 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E12.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -20021,15 +11299,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3331293517, - "modified_timestamp": "2025-05-17T16:13:40+00:00", - "resolution": null, - "codec": null, - "duration_seconds": null, - "bitrate_kbps": null - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E15.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -20041,15 +11311,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2831274678, - "modified_timestamp": "2025-05-17T16:30:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4178.4, - "bitrate_kbps": 5420 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E13.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -20061,15 +11323,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2518506230, - "modified_timestamp": "2025-05-17T16:23:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3743.392, - "bitrate_kbps": 5382 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/When.Life.Gives.You.Tangerines.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/When.Life.Gives.You.Tangerines.S01E14.2025.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -20081,15 +11335,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2647703632, - "modified_timestamp": "2025-05-17T16:27:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3924.96, - "bitrate_kbps": 5396 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/RoOT 第06話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -20099,15 +11345,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 560692420, - "modified_timestamp": "2024-05-21T14:57:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.008, - "bitrate_kbps": 3215 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Taxi.Driver.S03E01.1080p.WEB-DL.AAC2.0.H.264-CHIOS.mkv", @@ -20119,15 +11357,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4920032486, - "modified_timestamp": "2025-12-23T04:55:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4012.041, - "bitrate_kbps": 9810 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E08.Braciole.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20139,15 +11369,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2007561640, - "modified_timestamp": "2023-07-29T12:13:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2857.504, - "bitrate_kbps": 5620 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E07.Review.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20159,15 +11381,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 992634129, - "modified_timestamp": "2023-07-29T12:13:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1223.744, - "bitrate_kbps": 6489 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E03.Brigade.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20179,15 +11393,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1212699087, - "modified_timestamp": "2023-07-29T12:13:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1763.2, - "bitrate_kbps": 5502 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E05.Sheridan.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20199,15 +11405,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1061327495, - "modified_timestamp": "2023-07-29T12:13:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1520.032, - "bitrate_kbps": 5585 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E01.System.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20219,15 +11417,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1405894102, - "modified_timestamp": "2023-07-29T11:45:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1667.104, - "bitrate_kbps": 6746 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E04.Dogs.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20239,15 +11429,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1299143288, - "modified_timestamp": "2023-07-29T12:13:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1805.152, - "bitrate_kbps": 5757 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E06.Ceres.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20259,15 +11441,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1313670330, - "modified_timestamp": "2023-07-29T12:13:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1846.24, - "bitrate_kbps": 5692 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S01E02.Hands.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -20279,15 +11453,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1371722527, - "modified_timestamp": "2023-07-29T12:13:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1879.808, - "bitrate_kbps": 5837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E07.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20299,15 +11465,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2483103327, - "modified_timestamp": "2022-08-16T07:07:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4170.016, - "bitrate_kbps": 4763 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E14.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20319,15 +11477,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2160847303, - "modified_timestamp": "2022-08-16T07:07:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4201.504, - "bitrate_kbps": 4114 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E13.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20339,15 +11489,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2855623149, - "modified_timestamp": "2022-08-16T07:07:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4168.352, - "bitrate_kbps": 5480 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E09.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20359,15 +11501,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2296708652, - "modified_timestamp": "2022-08-16T07:07:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4042.144, - "bitrate_kbps": 4545 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E04.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20379,15 +11513,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3097837899, - "modified_timestamp": "2022-08-16T07:07:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3924.512, - "bitrate_kbps": 6314 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E03.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20399,15 +11525,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2691722339, - "modified_timestamp": "2022-08-16T07:07:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3924.512, - "bitrate_kbps": 5486 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E10.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20419,15 +11537,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2100660531, - "modified_timestamp": "2022-08-16T07:06:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4053.28, - "bitrate_kbps": 4146 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E12.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20439,15 +11549,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2484806155, - "modified_timestamp": "2022-08-16T07:07:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4172.704, - "bitrate_kbps": 4763 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E08.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20459,15 +11561,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3198045214, - "modified_timestamp": "2022-08-16T07:07:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4320.672, - "bitrate_kbps": 5921 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E15.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20479,15 +11573,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2361636778, - "modified_timestamp": "2022-08-16T07:06:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4158.624, - "bitrate_kbps": 4543 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E06.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20499,15 +11585,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2344219603, - "modified_timestamp": "2022-08-16T07:07:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4128.032, - "bitrate_kbps": 4543 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E01.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20519,15 +11597,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3358879645, - "modified_timestamp": "2022-08-16T07:06:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4063.392, - "bitrate_kbps": 6612 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E16.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20539,15 +11609,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3263648700, - "modified_timestamp": "2022-08-16T07:07:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4988.96, - "bitrate_kbps": 5233 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E11.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20559,15 +11621,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3853425764, - "modified_timestamp": "2022-08-16T07:07:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4243.488, - "bitrate_kbps": 7264 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E02.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20579,15 +11633,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2644631287, - "modified_timestamp": "2022-08-16T07:07:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3858.688, - "bitrate_kbps": 5482 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Live.Up.To.Your.Name.S01.1080p.NF.WEB-DL.DDP2.0.x264-Ao/Live.Up.To.Your.Name.S01E05.1080p.NF.WEB-DL.DDP2.0.x264-Ao.mkv", @@ -20599,15 +11645,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2331991300, - "modified_timestamp": "2022-08-16T07:07:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3916.96, - "bitrate_kbps": 4762 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第07話 「私は明日、20年後のきみとデートしない」 (1440x1080i x264-AAC)-DoA.mkv", @@ -20617,15 +11655,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 940448904, - "modified_timestamp": "2024-01-05T12:55:17+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1390.022, - "bitrate_kbps": 5412 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E07.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20637,15 +11667,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 742849937, - "modified_timestamp": "2024-12-30T12:20:34+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2759.28, - "bitrate_kbps": 2153 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E06.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20657,15 +11679,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 810248758, - "modified_timestamp": "2024-12-30T12:19:18+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2981.72, - "bitrate_kbps": 2173 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E10.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20677,15 +11691,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1172428251, - "modified_timestamp": "2024-12-30T12:26:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3704.6, - "bitrate_kbps": 2531 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E05.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20697,15 +11703,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 918631689, - "modified_timestamp": "2024-12-30T12:17:35+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2960.48, - "bitrate_kbps": 2482 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E04.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20717,15 +11715,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 828448008, - "modified_timestamp": "2024-12-30T12:16:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2978.16, - "bitrate_kbps": 2225 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E03.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20737,15 +11727,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 942092549, - "modified_timestamp": "2024-12-30T12:14:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3022.48, - "bitrate_kbps": 2493 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E02.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20757,15 +11739,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 932500313, - "modified_timestamp": "2024-12-30T12:12:42+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3184.56, - "bitrate_kbps": 2342 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E01.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20777,15 +11751,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1128499219, - "modified_timestamp": "2024-12-30T12:11:23+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3426.72, - "bitrate_kbps": 2634 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E08.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20797,15 +11763,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1838679517, - "modified_timestamp": "2024-12-30T12:24:11+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2872.28, - "bitrate_kbps": 5121 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/豺狼的日子.第一季/The.Day.Of.The.Jackal.S01E09.1080p.WEB-DL.DDP5.1.Atmos.x265.10bit-Yumi@FRDS.mkv", @@ -20817,15 +11775,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1232472369, - "modified_timestamp": "2024-12-30T12:26:09+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2850.16, - "bitrate_kbps": 3459 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20837,15 +11787,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1103871563, - "modified_timestamp": "2025-12-17T13:00:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.187, - "bitrate_kbps": 3205 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E05.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20857,15 +11799,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1108517562, - "modified_timestamp": "2025-12-17T12:57:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2765.125, - "bitrate_kbps": 3207 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E09.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20877,15 +11811,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1095604582, - "modified_timestamp": "2025-12-17T13:05:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2735.194, - "bitrate_kbps": 3204 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E02.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20897,15 +11823,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1105295539, - "modified_timestamp": "2025-12-17T12:51:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.14, - "bitrate_kbps": 3209 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E06.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20917,15 +11835,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1109736858, - "modified_timestamp": "2025-12-17T12:58:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2765.125, - "bitrate_kbps": 3210 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E04.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20937,15 +11847,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1109464205, - "modified_timestamp": "2025-12-17T12:55:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2765.078, - "bitrate_kbps": 3209 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E10.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20957,15 +11859,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1098456859, - "modified_timestamp": "2025-12-17T13:05:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2735.194, - "bitrate_kbps": 3212 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E08.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20977,15 +11871,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1101496203, - "modified_timestamp": "2025-12-17T13:03:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2738.166, - "bitrate_kbps": 3218 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E07.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -20997,15 +11883,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1116790036, - "modified_timestamp": "2025-12-17T12:50:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2765.125, - "bitrate_kbps": 3231 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/俺の話は長い.S01.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB/俺の話は長い.S01E03.1080p.KKTV.WEB-DL.AAC2.0.x264-xiaopie@CHDWEB.mkv", @@ -21017,15 +11895,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1109005867, - "modified_timestamp": "2025-12-17T12:54:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2765.078, - "bitrate_kbps": 3208 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E14.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21037,15 +11907,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2838347512, - "modified_timestamp": "2023-06-06T11:06:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3832.725, - "bitrate_kbps": 5924 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E10.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21057,15 +11919,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2956957485, - "modified_timestamp": "2023-06-06T11:06:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3775.637, - "bitrate_kbps": 6265 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E07.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21077,15 +11931,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3216777155, - "modified_timestamp": "2023-06-06T11:06:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4262.912, - "bitrate_kbps": 6036 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E03.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21097,15 +11943,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3370761237, - "modified_timestamp": "2023-06-06T11:06:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4293.312, - "bitrate_kbps": 6280 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E06.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21117,15 +11955,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3095122001, - "modified_timestamp": "2023-06-06T11:06:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3938.432, - "bitrate_kbps": 6287 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E02.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21137,15 +11967,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3574466716, - "modified_timestamp": "2023-06-06T11:06:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4415.616, - "bitrate_kbps": 6476 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E15.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21157,15 +11979,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3118825018, - "modified_timestamp": "2023-06-06T11:06:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4208.81, - "bitrate_kbps": 5928 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E11.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21177,15 +11991,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3369493277, - "modified_timestamp": "2023-06-06T11:06:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4304.128, - "bitrate_kbps": 6262 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E04.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21197,15 +12003,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3190171205, - "modified_timestamp": "2023-06-06T11:06:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4096.405, - "bitrate_kbps": 6230 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E08.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21217,15 +12015,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3553089488, - "modified_timestamp": "2023-06-06T11:06:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4404.437, - "bitrate_kbps": 6453 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E13.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21237,15 +12027,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2870819064, - "modified_timestamp": "2023-06-06T11:06:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3814.848, - "bitrate_kbps": 6020 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E16.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21257,15 +12039,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3227689378, - "modified_timestamp": "2023-06-06T11:06:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4285.269, - "bitrate_kbps": 6025 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E09.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21277,15 +12051,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2988458210, - "modified_timestamp": "2023-06-06T11:06:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3803.008, - "bitrate_kbps": 6286 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E12.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21297,15 +12063,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3499336162, - "modified_timestamp": "2023-06-06T11:06:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4372.991, - "bitrate_kbps": 6401 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E05.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21317,15 +12075,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3078743680, - "modified_timestamp": "2023-06-06T11:06:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4216.49, - "bitrate_kbps": 5841 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Big.Mouth.S01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV/Big.Mouth.S01E01.2022.Disney+.WEB-DL.1080p.H264.AAC-HDCTV.mkv", @@ -21337,15 +12087,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3010948651, - "modified_timestamp": "2023-06-06T11:06:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3752.192, - "bitrate_kbps": 6419 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E03.The.Box.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -21357,15 +12099,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4027846148, - "modified_timestamp": "2024-06-08T05:40:46+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2976.807, - "bitrate_kbps": 10824 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S03E01.Persuader.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -21377,15 +12111,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3803405170, - "modified_timestamp": "2025-02-23T11:58:03+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3206.662, - "bitrate_kbps": 9488 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04E01.Night.Country.Part.1.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -21397,15 +12123,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4426175850, - "modified_timestamp": "2024-01-20T10:07:43+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3510.257, - "bitrate_kbps": 10087 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/True.Detective.S04E06.Night.Country.Part.6.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -21417,15 +12135,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5462637394, - "modified_timestamp": "2024-02-19T11:41:51+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 4521.434, - "bitrate_kbps": 9665 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Sell.Your.Haunted.House.S01.1080p.WEB-DL.AAC2.0.H264-TTG/Sell.Your.Haunted.House.S01E01.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", @@ -21437,15 +12147,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5134874610, - "modified_timestamp": "2021-04-24T10:09:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3935.132, - "bitrate_kbps": 10439 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Sell.Your.Haunted.House.S01.1080p.WEB-DL.AAC2.0.H264-TTG/Sell.Your.Haunted.House.S01E04.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", @@ -21457,15 +12159,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4807022144, - "modified_timestamp": "2021-04-24T10:09:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3687.132, - "bitrate_kbps": 10429 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Sell.Your.Haunted.House.S01.1080p.WEB-DL.AAC2.0.H264-TTG/Sell.Your.Haunted.House.S01E02.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", @@ -21477,15 +12171,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5111268205, - "modified_timestamp": "2021-04-24T10:09:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3916.132, - "bitrate_kbps": 10441 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Sell.Your.Haunted.House.S01.1080p.WEB-DL.AAC2.0.H264-TTG/Sell.Your.Haunted.House.S01E03.1080p.WEB-DL.AAC2.0.H264-TTG.mkv", @@ -21497,15 +12183,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4795481550, - "modified_timestamp": "2021-04-24T10:09:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3673.132, - "bitrate_kbps": 10444 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP04 720p HDTV x264 AAC-DoA.mkv", @@ -21515,15 +12193,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1634913409, - "modified_timestamp": "2024-01-12T11:54:20+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3109.809, - "bitrate_kbps": 4205 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/RoOT 第03話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -21533,15 +12203,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 555806040, - "modified_timestamp": "2024-04-21T13:15:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.008, - "bitrate_kbps": 3187 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E02.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21553,15 +12215,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4286918904, - "modified_timestamp": "2024-12-22T04:17:32+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2557.632, - "bitrate_kbps": 13409 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E05.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21573,15 +12227,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4808117923, - "modified_timestamp": "2024-12-22T05:16:02+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2710.816, - "bitrate_kbps": 14189 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E03.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21593,15 +12239,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4130705743, - "modified_timestamp": "2024-12-22T04:25:08+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2443.776, - "bitrate_kbps": 13522 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E04.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21613,15 +12251,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3931790324, - "modified_timestamp": "2024-12-22T05:16:00+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2368.384, - "bitrate_kbps": 13280 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21633,15 +12263,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6109217178, - "modified_timestamp": "2024-12-22T05:16:06+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3538.304, - "bitrate_kbps": 13812 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21653,15 +12275,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7784385017, - "modified_timestamp": "2024-12-22T05:16:04+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 4547.104, - "bitrate_kbps": 13695 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E06.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21673,15 +12287,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5403053001, - "modified_timestamp": "2024-12-22T05:16:03+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3015.616, - "bitrate_kbps": 14333 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Light.Shop.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB/Light.Shop.S01E01.2024.2160p.DSNP.WEB-DL.DDP5.1.Atmos.HDR.H.265-HHWEB.mkv", @@ -21693,15 +12299,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4330105410, - "modified_timestamp": "2024-12-22T04:16:51+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2619.744, - "bitrate_kbps": 13222 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.2024.S01E03.Tomorrow.Is.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -21713,15 +12311,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2832520487, - "modified_timestamp": "2024-03-05T11:33:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3174.304, - "bitrate_kbps": 7138 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第04話 「ある日浅草のどこかで」 (1440x1080i x264-AAC)-DoA.mkv", @@ -21731,15 +12321,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 832150418, - "modified_timestamp": "2024-01-05T12:23:07+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.755, - "bitrate_kbps": 4790 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E04.Episode.4.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21751,15 +12333,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2439901003, - "modified_timestamp": "2025-06-13T14:22:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3751.776, - "bitrate_kbps": 5202 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E09.Episode.9.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21771,15 +12345,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1963201376, - "modified_timestamp": "2025-06-13T13:05:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2927.264, - "bitrate_kbps": 5365 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E05.Episode.5.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21791,15 +12357,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2155083408, - "modified_timestamp": "2025-06-13T14:23:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3455.328, - "bitrate_kbps": 4989 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E08.Episode.8.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21811,15 +12369,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1857364106, - "modified_timestamp": "2025-06-13T13:05:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3071.84, - "bitrate_kbps": 4837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E01.Episode.1.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21831,15 +12381,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2174756222, - "modified_timestamp": "2025-06-13T13:18:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3231.36, - "bitrate_kbps": 5384 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E07.Episode.7.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21851,15 +12393,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1922633290, - "modified_timestamp": "2025-06-13T13:04:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3178.688, - "bitrate_kbps": 4838 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E10.Episode.10.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21871,15 +12405,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2068621820, - "modified_timestamp": "2025-06-13T13:04:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2930.624, - "bitrate_kbps": 5646 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E03.Episode.3.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21891,15 +12417,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1997768914, - "modified_timestamp": "2025-06-13T14:23:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3127.712, - "bitrate_kbps": 5109 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E11.Episode.11.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21911,15 +12429,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1964557415, - "modified_timestamp": "2025-06-13T13:04:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3005.216, - "bitrate_kbps": 5229 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E02.Episode.2.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21931,15 +12441,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1886955654, - "modified_timestamp": "2025-06-13T13:32:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2994.534, - "bitrate_kbps": 5041 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Nine.Puzzles.S01.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Nine.Puzzles.S01E06.Episode.6.1080p.Disney+.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -21951,15 +12453,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2199852027, - "modified_timestamp": "2025-06-13T14:23:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3482.784, - "bitrate_kbps": 5053 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第01話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", @@ -21969,15 +12463,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1272777333, - "modified_timestamp": "2024-11-08T00:45:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.032, - "bitrate_kbps": 3463 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第03話 END 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", @@ -21987,15 +12473,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1166226742, - "modified_timestamp": "2024-11-08T00:47:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.064, - "bitrate_kbps": 3173 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shrink-精神科医ヨワイ- Complete 1080p AMZN WEB-DL H264 AAC-e@DoA/Shrink-精神科医ヨワイ- 第02話 1080p AMZN WEB-DL H264 AAC-e@DoA.mp4", @@ -22005,15 +12483,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1197589192, - "modified_timestamp": "2024-11-08T00:47:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.032, - "bitrate_kbps": 3258 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/RoOT 第09話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -22023,15 +12493,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 558172153, - "modified_timestamp": "2024-06-05T14:56:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.124, - "bitrate_kbps": 3200 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E02.Happy.Death.Ritual.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22043,15 +12505,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2409316640, - "modified_timestamp": "2024-03-26T14:51:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2099.808, - "bitrate_kbps": 9179 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E07.Premonition.of.a.Storm.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22063,15 +12517,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2562359181, - "modified_timestamp": "2024-03-26T14:51:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2112.0, - "bitrate_kbps": 9705 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E08.If.You.Love.Someone.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22083,15 +12529,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2604176242, - "modified_timestamp": "2024-03-26T14:51:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2111.008, - "bitrate_kbps": 9868 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E03.Ground.Rules.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22103,15 +12541,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2419143233, - "modified_timestamp": "2024-03-26T14:51:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2080.32, - "bitrate_kbps": 9302 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E05.Happy.Birthday.Detective.Inukai.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22123,15 +12553,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2418513562, - "modified_timestamp": "2024-03-26T14:51:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2109.984, - "bitrate_kbps": 9169 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E01.Meet.Creepy-Cute.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22143,15 +12565,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2611303095, - "modified_timestamp": "2024-03-26T14:51:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2261.088, - "bitrate_kbps": 9239 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E04.Baiting.and.Dating.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22163,15 +12577,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2287503901, - "modified_timestamp": "2024-03-26T14:50:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2063.168, - "bitrate_kbps": 8869 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Undead.Yokai.Girlfriend.S01.2024.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb/My.Undead.Yokai.Girlfriend.S01E06.Broken.Dreams.1080p.AMZN.WEB-DL.DDP5.1.H.264-ADWeb.mkv", @@ -22183,15 +12589,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2062837030, - "modified_timestamp": "2024-03-26T14:51:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1846.016, - "bitrate_kbps": 8939 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Moon.Knight.S01.2160p.WEB-DL.DDP5.1.Atmos.H.265-TBD/Moon.Knight.S01E06.Gods.and.Monsters.2160p.WEB-DL.DDP5.1.Atmos.H.265-TBD.mkv", @@ -22203,15 +12601,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6426632761, - "modified_timestamp": "2022-05-04T10:27:54+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2547.872, - "bitrate_kbps": 20178 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E05.Worldless.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -22223,15 +12613,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4518126198, - "modified_timestamp": "2024-06-08T05:54:19+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3336.125, - "bitrate_kbps": 10834 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E06.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", @@ -22243,15 +12625,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3745544520, - "modified_timestamp": "2022-08-01T11:30:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3480.894, - "bitrate_kbps": 8608 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E02.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", @@ -22263,15 +12637,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3240835081, - "modified_timestamp": "2022-07-04T11:06:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3006.754, - "bitrate_kbps": 8622 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E07.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", @@ -22283,15 +12649,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3413518628, - "modified_timestamp": "2022-08-08T11:08:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3168.082, - "bitrate_kbps": 8619 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Westworld.S04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB/Westworld.S04E04.1080p.HMAX.WEB-DL.x264.DD5.1-PTerWEB.mkv", @@ -22303,15 +12661,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3280952996, - "modified_timestamp": "2022-07-18T11:12:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3042.623, - "bitrate_kbps": 8626 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP05 720p HDTV x264 AAC-DoA.mkv", @@ -22321,15 +12671,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1676439873, - "modified_timestamp": "2024-01-12T12:15:39+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3109.809, - "bitrate_kbps": 4312 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E03.Episode.3.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22341,15 +12683,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2477605287, - "modified_timestamp": "2025-07-31T11:39:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2238.779, - "bitrate_kbps": 8853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E04.Episode.4.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22361,15 +12695,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2566865524, - "modified_timestamp": "2025-07-31T12:33:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2377.375, - "bitrate_kbps": 8637 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E07.Episode.7.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22381,15 +12707,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2736573300, - "modified_timestamp": "2025-07-31T12:36:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2958.039, - "bitrate_kbps": 7401 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E05.Episode.5.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22401,15 +12719,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2202534185, - "modified_timestamp": "2025-07-31T12:33:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2538.453, - "bitrate_kbps": 6941 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E02.Episode.2.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22421,15 +12731,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2342434370, - "modified_timestamp": "2025-07-31T11:21:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2696.611, - "bitrate_kbps": 6949 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E06.Episode.6.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22441,15 +12743,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2050579572, - "modified_timestamp": "2025-07-31T12:36:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2706.287, - "bitrate_kbps": 6061 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mercy.For.None.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Mercy.For.None.S01E01.Episode.1.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22461,15 +12755,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1947373142, - "modified_timestamp": "2025-07-31T10:59:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2574.572, - "bitrate_kbps": 6051 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04E05.Night.Country.Part.5.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -22481,15 +12767,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4722265107, - "modified_timestamp": "2024-02-16T09:03:35+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3784.948, - "bitrate_kbps": 9981 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E03.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22499,15 +12777,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 821475750, - "modified_timestamp": "2024-10-17T14:31:47+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2638.602, - "bitrate_kbps": 2490 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E02.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22517,15 +12787,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 903648803, - "modified_timestamp": "2024-10-17T14:28:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2948.96, - "bitrate_kbps": 2451 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E10.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22535,15 +12797,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 845319882, - "modified_timestamp": "2024-10-17T14:49:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2700.564, - "bitrate_kbps": 2504 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E01.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22553,15 +12807,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 995186003, - "modified_timestamp": "2024-10-17T14:22:06+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3263.328, - "bitrate_kbps": 2439 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E11.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22571,15 +12817,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 829843639, - "modified_timestamp": "2024-10-17T14:49:58+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2740.471, - "bitrate_kbps": 2422 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E05.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22589,15 +12827,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 822701649, - "modified_timestamp": "2024-10-17T14:37:11+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2756.453, - "bitrate_kbps": 2387 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E04.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22607,15 +12837,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 841377234, - "modified_timestamp": "2024-10-17T14:35:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2686.917, - "bitrate_kbps": 2505 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E06.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22625,15 +12847,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 828574877, - "modified_timestamp": "2024-10-17T14:40:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2702.848, - "bitrate_kbps": 2452 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E07.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22643,15 +12857,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 826860834, - "modified_timestamp": "2024-10-17T14:44:12+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2691.889, - "bitrate_kbps": 2457 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E08.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22661,15 +12867,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 831103052, - "modified_timestamp": "2024-10-17T14:45:59+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2719.936, - "bitrate_kbps": 2444 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/回我的家.Going.My.Home.E01-E11.2012.1080p.Blu-ray.x265.AC3£cXcY@FRDS/Going.My.Home.E09.2012.1080p.Blu-ray.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -22679,15 +12877,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 846576444, - "modified_timestamp": "2024-10-17T14:48:35+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2772.8, - "bitrate_kbps": 2442 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第4話 最愛の妻の嘘 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -22697,15 +12887,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1058706570, - "modified_timestamp": "2024-05-21T00:28:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3021.994, - "bitrate_kbps": 2802 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E02.Red.Coast.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22717,15 +12899,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2627730458, - "modified_timestamp": "2024-03-22T13:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3831.912, - "bitrate_kbps": 5485 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E01.Countdown.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22737,15 +12911,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2487401872, - "modified_timestamp": "2024-03-22T13:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3635.132, - "bitrate_kbps": 5474 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E06.The.Stars.Our.Destination.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22757,15 +12923,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1973412446, - "modified_timestamp": "2024-03-22T13:16:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2908.99, - "bitrate_kbps": 5427 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E05.Judgment.Day.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22777,15 +12935,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2381986776, - "modified_timestamp": "2024-03-22T13:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3478.6, - "bitrate_kbps": 5478 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E03.Destroyer.of.Worlds.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22797,15 +12947,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2187037020, - "modified_timestamp": "2024-03-22T13:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3210.499, - "bitrate_kbps": 5449 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E07.Only.Advance.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22817,15 +12959,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2394806063, - "modified_timestamp": "2024-03-22T13:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3506.336, - "bitrate_kbps": 5463 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E08.Wallfacer.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22837,15 +12971,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2328687877, - "modified_timestamp": "2024-03-22T13:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3402.066, - "bitrate_kbps": 5475 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/3.Body.Problem.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/3.Body.Problem.S01E04.Our.Lord.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -22857,15 +12983,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1775074167, - "modified_timestamp": "2024-03-22T13:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2648.396, - "bitrate_kbps": 5361 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E14.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22877,15 +12995,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2676141050, - "modified_timestamp": "2024-12-07T02:32:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4443.498, - "bitrate_kbps": 4818 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E04.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22897,15 +13007,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2333078844, - "modified_timestamp": "2024-12-07T02:19:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3647.701, - "bitrate_kbps": 5116 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E03.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22917,15 +13019,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2378221439, - "modified_timestamp": "2024-12-07T02:17:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3688.746, - "bitrate_kbps": 5157 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E13.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22937,15 +13031,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2350243074, - "modified_timestamp": "2024-12-07T02:32:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4127.168, - "bitrate_kbps": 4555 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E05.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22957,15 +13043,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2370330558, - "modified_timestamp": "2024-12-07T02:21:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3853.909, - "bitrate_kbps": 4920 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E12.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22977,15 +13055,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2466882508, - "modified_timestamp": "2024-12-07T02:31:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4157.205, - "bitrate_kbps": 4747 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E02.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -22997,15 +13067,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2676424021, - "modified_timestamp": "2024-12-07T02:14:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4151.211, - "bitrate_kbps": 5157 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23017,15 +13079,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2467927653, - "modified_timestamp": "2024-12-07T02:12:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3917.973, - "bitrate_kbps": 5039 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E11.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23037,15 +13091,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2221911162, - "modified_timestamp": "2024-12-07T02:30:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3790.848, - "bitrate_kbps": 4689 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E09.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23057,15 +13103,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2331014234, - "modified_timestamp": "2024-12-07T02:30:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3791.851, - "bitrate_kbps": 4917 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E06.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23077,15 +13115,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2294334314, - "modified_timestamp": "2024-12-07T02:24:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3696.746, - "bitrate_kbps": 4965 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E08.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23097,15 +13127,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2411926316, - "modified_timestamp": "2024-12-07T02:28:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3835.883, - "bitrate_kbps": 5030 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E10.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23117,15 +13139,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2404783210, - "modified_timestamp": "2024-12-07T02:30:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4113.151, - "bitrate_kbps": 4677 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Judge.From.Hell.S01.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb/The.Judge.From.Hell.S01E07.2024.1080p.DSNP.WEB-DL.H264.AAC-ADWeb.mkv", @@ -23137,15 +13151,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2484787434, - "modified_timestamp": "2024-12-07T02:26:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3977.024, - "bitrate_kbps": 4998 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E03.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23155,15 +13161,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 636714532, - "modified_timestamp": "2024-11-04T11:15:08+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 3212.064, - "bitrate_kbps": 1585 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E04.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23173,15 +13171,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 676376682, - "modified_timestamp": "2024-11-04T11:15:05+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 2868.224, - "bitrate_kbps": 1886 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E02.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23191,15 +13181,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 669326551, - "modified_timestamp": "2024-11-04T11:15:27+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 3175.968, - "bitrate_kbps": 1685 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E05.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23209,15 +13191,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 694290567, - "modified_timestamp": "2024-11-04T11:14:50+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 3295.724, - "bitrate_kbps": 1685 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E06.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23227,15 +13201,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 617586717, - "modified_timestamp": "2024-11-04T11:14:29+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 3112.48, - "bitrate_kbps": 1587 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E01.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23245,15 +13211,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 668397784, - "modified_timestamp": "2024-11-04T11:15:30+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 3368.64, - "bitrate_kbps": 1587 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/2010.圣殿春秋/圣殿春秋.The.Pillars.Of.The.Earth.E07-E08.Chi_Eng.HR-HDTV.AC3.1024X576.x264-YYeTs人人影视.mkv", @@ -23263,15 +13221,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1334044077, - "modified_timestamp": "2024-11-04T11:14:43+00:00", - "resolution": "1024x576", - "codec": "h264", - "duration_seconds": 6330.848, - "bitrate_kbps": 1685 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Reacher.S02E06.New.Yorks.Finest.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -23283,15 +13233,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2731185389, - "modified_timestamp": "2024-01-09T05:09:24+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2725.723, - "bitrate_kbps": 8016 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP01.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", @@ -23301,15 +13243,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1150009566, - "modified_timestamp": "2024-01-05T12:16:49+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2722.432, - "bitrate_kbps": 3379 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP03.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", @@ -23319,15 +13253,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1020032379, - "modified_timestamp": "2024-01-05T12:17:42+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2310.592, - "bitrate_kbps": 3531 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP04.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", @@ -23337,15 +13263,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1140005571, - "modified_timestamp": "2024-01-05T12:17:42+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2584.736, - "bitrate_kbps": 3528 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Wonder Hatch Soratobu Ryuu no Shima EP01-EP04 [WEBDL] [720p] [DSNP] [JPN_ENG_CHT_SUB]/Wonder.Hatch.Soratobu.Ryuu.no.Shima.EP02.720p.DSNP.WEB-DL.DDP5.1.H.264-MagicStar.mkv", @@ -23355,15 +13273,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 851019132, - "modified_timestamp": "2024-01-05T12:17:42+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 1956.032, - "bitrate_kbps": 3480 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP01.WEB-DL.1080p.HEVC.AAC-AREY.mp4", @@ -23373,15 +13283,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 828761563, - "modified_timestamp": "2018-11-20T11:46:20+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3093.12, - "bitrate_kbps": 2143 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Savouring.China.2018.EP01-EP02.WEB-DL.1080p.HEVC.AAC-AREY/Savouring.China.2018.EP02.WEB-DL.1080p.HEVC.AAC-AREY.mp4", @@ -23391,15 +13293,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 828109760, - "modified_timestamp": "2018-11-20T11:46:21+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3083.2, - "bitrate_kbps": 2148 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E08.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23411,15 +13305,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2599657083, - "modified_timestamp": "2023-02-03T14:25:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3024.384, - "bitrate_kbps": 6876 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E04.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23431,15 +13317,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2289680165, - "modified_timestamp": "2023-02-03T14:25:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2619.456, - "bitrate_kbps": 6992 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E05.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23451,15 +13329,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2557713622, - "modified_timestamp": "2023-02-03T14:25:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2932.576, - "bitrate_kbps": 6977 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23471,15 +13341,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2484930302, - "modified_timestamp": "2023-02-03T14:25:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3007.232, - "bitrate_kbps": 6610 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E12.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23491,15 +13353,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3365170756, - "modified_timestamp": "2023-02-03T14:25:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3656.896, - "bitrate_kbps": 7361 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E09.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23511,15 +13365,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2451724787, - "modified_timestamp": "2023-02-03T14:25:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2788.096, - "bitrate_kbps": 7034 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E07.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23531,15 +13377,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2289419293, - "modified_timestamp": "2023-02-03T14:25:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2758.848, - "bitrate_kbps": 6638 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E03.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23551,15 +13389,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2567478683, - "modified_timestamp": "2023-02-03T14:25:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3146.08, - "bitrate_kbps": 6528 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E10.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23571,15 +13401,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2772392466, - "modified_timestamp": "2023-02-03T14:25:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3002.72, - "bitrate_kbps": 7386 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E11.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23591,15 +13413,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3200660586, - "modified_timestamp": "2023-02-03T14:25:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3480.192, - "bitrate_kbps": 7357 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E06.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23611,15 +13425,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3035523481, - "modified_timestamp": "2023-02-03T14:25:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3295.616, - "bitrate_kbps": 7368 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Taiwan.Crime.Stories.S01.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV/Taiwan.Crime.Stories.S01E02.2023.Disney+.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -23631,15 +13437,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2233574631, - "modified_timestamp": "2023-02-03T14:25:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2797.12, - "bitrate_kbps": 6388 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E01.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23649,15 +13447,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 556351637, - "modified_timestamp": "2022-08-30T15:10:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.171, - "bitrate_kbps": 3190 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E06.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23667,15 +13457,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 890462821, - "modified_timestamp": "2022-08-30T15:10:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1380.101, - "bitrate_kbps": 5161 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E05.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23685,15 +13467,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 593748247, - "modified_timestamp": "2022-08-30T15:11:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.101, - "bitrate_kbps": 3404 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E02.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23703,15 +13477,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 677783929, - "modified_timestamp": "2022-08-30T15:10:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.171, - "bitrate_kbps": 3886 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E04.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23721,15 +13487,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 893660764, - "modified_timestamp": "2022-08-30T15:10:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.101, - "bitrate_kbps": 5124 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Chokotto.Kyoto.ni.Sundemita.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Chokotto.Kyoto.ni.Sundemita.E03.2022.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -23739,15 +13497,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 563259305, - "modified_timestamp": "2022-08-30T15:11:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.171, - "bitrate_kbps": 3229 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shogun.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB/Shogun.S01E09.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", @@ -23759,15 +13509,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6802546393, - "modified_timestamp": "2024-04-27T09:56:39+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3609.792, - "bitrate_kbps": 15075 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", @@ -23779,15 +13521,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6090068390, - "modified_timestamp": "2024-05-16T12:11:08+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3270.592, - "bitrate_kbps": 14896 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", @@ -23799,15 +13533,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6476273531, - "modified_timestamp": "2024-04-27T09:29:23+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3462.976, - "bitrate_kbps": 14961 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.S01.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB/Shogun.S01E10.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", @@ -23819,15 +13545,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6941959362, - "modified_timestamp": "2024-04-27T09:58:48+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3741.056, - "bitrate_kbps": 14844 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E10.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23839,15 +13557,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1104548993, - "modified_timestamp": "2025-04-25T23:59:25+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2626.966, - "bitrate_kbps": 3363 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E06.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23859,15 +13569,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1123819063, - "modified_timestamp": "2025-04-25T23:56:05+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2574.257, - "bitrate_kbps": 3492 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E08.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23879,15 +13581,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1146521882, - "modified_timestamp": "2025-04-25T23:58:15+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2542.771, - "bitrate_kbps": 3607 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E05.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23899,15 +13593,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1164598340, - "modified_timestamp": "2025-04-25T23:55:36+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2599.149, - "bitrate_kbps": 3584 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E03.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23919,15 +13605,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1103349716, - "modified_timestamp": "2025-04-25T23:45:23+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2536.524, - "bitrate_kbps": 3479 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E09.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23939,15 +13617,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1129255798, - "modified_timestamp": "2025-04-25T23:58:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2544.187, - "bitrate_kbps": 3550 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E07.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23959,15 +13629,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1150439052, - "modified_timestamp": "2025-04-25T23:57:22+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2535.224, - "bitrate_kbps": 3630 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E04.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23979,15 +13641,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1155572901, - "modified_timestamp": "2025-04-25T23:53:47+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2533.39, - "bitrate_kbps": 3649 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -23999,15 +13653,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1136857865, - "modified_timestamp": "2025-04-25T23:52:37+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2623.692, - "bitrate_kbps": 3466 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.S01.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB/Study.Group.S01E02.2025.2160p.IQ.WEB-DL.H265.AAC-CHDWEB.mkv", @@ -24019,15 +13665,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1119379266, - "modified_timestamp": "2025-04-25T23:53:28+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2563.297, - "bitrate_kbps": 3493 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/jukkakukannosatsujin.S01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB/jukkakukannosatsujin.S01E04.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", @@ -24039,15 +13677,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 843124753, - "modified_timestamp": "2024-05-02T10:13:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2756.8, - "bitrate_kbps": 2446 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/jukkakukannosatsujin.S01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB/jukkakukannosatsujin.S01E05.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", @@ -24059,15 +13689,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 893891011, - "modified_timestamp": "2024-05-02T10:13:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2910.954, - "bitrate_kbps": 2456 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/jukkakukannosatsujin.S01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB/jukkakukannosatsujin.S01E01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", @@ -24079,15 +13701,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1236031794, - "modified_timestamp": "2024-05-02T10:13:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3179.221, - "bitrate_kbps": 3110 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/jukkakukannosatsujin.S01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB/jukkakukannosatsujin.S01E03.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", @@ -24099,15 +13713,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 895011691, - "modified_timestamp": "2024-05-02T10:13:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2896.938, - "bitrate_kbps": 2471 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/jukkakukannosatsujin.S01.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB/jukkakukannosatsujin.S01E02.1080p.HuluJP.WEB-DL.AAC.2.0.H.264-CHDWEB.mkv", @@ -24119,15 +13725,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1013127295, - "modified_timestamp": "2024-05-02T10:13:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2641.685, - "bitrate_kbps": 3068 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP16.END.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24137,15 +13735,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2525547441, - "modified_timestamp": "2023-06-06T11:06:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3548.757, - "bitrate_kbps": 5693 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP09.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24155,15 +13745,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2653400752, - "modified_timestamp": "2023-06-06T11:06:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3725.738, - "bitrate_kbps": 5697 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP15.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24173,15 +13755,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2544634038, - "modified_timestamp": "2023-06-06T11:06:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3564.629, - "bitrate_kbps": 5710 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP07.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24191,15 +13765,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2851854516, - "modified_timestamp": "2023-06-06T11:06:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3997.738, - "bitrate_kbps": 5706 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP14.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24209,15 +13775,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2716669696, - "modified_timestamp": "2023-06-06T11:06:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3803.733, - "bitrate_kbps": 5713 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP08.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24227,15 +13785,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2815501273, - "modified_timestamp": "2023-06-06T11:06:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3946.816, - "bitrate_kbps": 5706 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP06.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24245,15 +13795,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2839408536, - "modified_timestamp": "2023-06-06T11:06:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3978.709, - "bitrate_kbps": 5709 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP05.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24263,15 +13805,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2704087476, - "modified_timestamp": "2023-06-06T11:06:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3788.778, - "bitrate_kbps": 5709 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP04.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24281,15 +13815,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2666854500, - "modified_timestamp": "2023-06-06T11:06:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3736.746, - "bitrate_kbps": 5709 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP02.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24299,15 +13825,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2787314028, - "modified_timestamp": "2023-06-06T09:25:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3904.64, - "bitrate_kbps": 5710 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP10.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24317,15 +13835,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2530189521, - "modified_timestamp": "2023-06-06T11:06:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3546.688, - "bitrate_kbps": 5707 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP03.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24335,15 +13845,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2852266405, - "modified_timestamp": "2023-06-06T09:25:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3995.733, - "bitrate_kbps": 5710 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP11.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24353,15 +13855,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2598170901, - "modified_timestamp": "2023-06-06T11:06:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3642.773, - "bitrate_kbps": 5705 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP12.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24371,15 +13865,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2576410592, - "modified_timestamp": "2023-06-06T11:06:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3610.688, - "bitrate_kbps": 5708 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP13.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24389,15 +13875,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2686296146, - "modified_timestamp": "2023-06-06T11:06:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3764.821, - "bitrate_kbps": 5708 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Life on Mars (2018) Complete 1080p WEB-DL AAC x264-SAKURA/Life on Mars.EP01.1080p.WEB-DL.x264-SAKURA.mkv", @@ -24407,15 +13885,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2682143941, - "modified_timestamp": "2023-06-06T09:25:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3765.824, - "bitrate_kbps": 5697 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E06.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24427,15 +13897,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2164265604, - "modified_timestamp": "2025-05-31T08:51:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3175.168, - "bitrate_kbps": 5452 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E04.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24447,15 +13909,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2268203386, - "modified_timestamp": "2025-05-31T08:51:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3319.776, - "bitrate_kbps": 5465 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E05.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24467,15 +13921,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2265061769, - "modified_timestamp": "2025-05-31T08:51:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3328.064, - "bitrate_kbps": 5444 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24487,15 +13933,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2287352715, - "modified_timestamp": "2025-05-31T08:51:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3338.976, - "bitrate_kbps": 5480 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E02.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24507,15 +13945,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2193519844, - "modified_timestamp": "2025-05-31T08:51:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3207.68, - "bitrate_kbps": 5470 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑鸽].Black.Doves.S01.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV/[黑鸽].Black.Doves.S01E03.2024.1080p.NF.WEB-DL.x264.DDP.5.1.Atmos-CMCTV.mkv", @@ -24527,15 +13957,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2345512972, - "modified_timestamp": "2025-05-31T08:51:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3417.056, - "bitrate_kbps": 5491 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E08.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24545,15 +13967,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4426747813, - "modified_timestamp": "2020-05-19T17:56:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3094.688, - "bitrate_kbps": 11443 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E02.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24563,15 +13977,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4858440894, - "modified_timestamp": "2020-05-19T17:56:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3214.88, - "bitrate_kbps": 12089 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E04.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24581,15 +13987,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4171142833, - "modified_timestamp": "2020-05-19T17:56:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2958.752, - "bitrate_kbps": 11278 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E03.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24599,15 +13997,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4371319637, - "modified_timestamp": "2020-05-19T17:56:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3108.896, - "bitrate_kbps": 11248 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E05.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24617,15 +14007,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4122601468, - "modified_timestamp": "2020-05-19T17:56:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3008.672, - "bitrate_kbps": 10961 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E06.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24635,15 +14017,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3552464974, - "modified_timestamp": "2020-05-19T17:56:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2342.816, - "bitrate_kbps": 12130 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E07.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24653,15 +14027,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3454126466, - "modified_timestamp": "2020-05-19T17:56:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2476.832, - "bitrate_kbps": 11156 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Naked.Director.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY/The.Naked.Director.E01.2019.Netflix.WEB-DL.1080p.x264.DDP-AREY.mkv", @@ -24671,15 +14037,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4323950674, - "modified_timestamp": "2020-05-19T17:56:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2844.704, - "bitrate_kbps": 12160 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/My.Story.Is.Long.S01.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB/My.Story.Is.Long.S01E01.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv", @@ -24691,15 +14049,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2689237086, - "modified_timestamp": "2025-12-14T13:52:05+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2700.372, - "bitrate_kbps": 7967 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/My.Story.Is.Long.S01.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB/My.Story.Is.Long.S01E02.1080p.friDay.WEB-DL.AAC2.0.H.264-CHDWEB.mkv", @@ -24711,15 +14061,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2684420873, - "modified_timestamp": "2025-12-14T13:53:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2698.41, - "bitrate_kbps": 7958 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第01話 「悪い夢」 (1920x1080 x264-AAC)-DoA [v2].mkv", @@ -24729,15 +14071,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2567303192, - "modified_timestamp": "2024-08-18T11:48:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3300.011, - "bitrate_kbps": 6223 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24749,15 +14083,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4675998368, - "modified_timestamp": "2024-04-04T14:16:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3487.968, - "bitrate_kbps": 10724 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E02.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24769,15 +14095,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4431276205, - "modified_timestamp": "2024-04-04T14:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3278.24, - "bitrate_kbps": 10813 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E03.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24789,15 +14107,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4088119356, - "modified_timestamp": "2024-04-04T14:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3027.066, - "bitrate_kbps": 10804 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E04.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24809,15 +14119,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4256586068, - "modified_timestamp": "2024-04-04T14:16:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3164.578, - "bitrate_kbps": 10760 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E05.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24829,15 +14131,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4206525856, - "modified_timestamp": "2024-04-04T14:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3111.36, - "bitrate_kbps": 10815 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E06.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24849,15 +14143,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4627085590, - "modified_timestamp": "2024-04-04T14:16:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3426.816, - "bitrate_kbps": 10802 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E07.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24869,15 +14155,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4352556551, - "modified_timestamp": "2024-04-04T14:11:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3232.736, - "bitrate_kbps": 10771 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Constellation.S01.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb/Constellation.S01E08.2024.1080p.ATVP.WEB-DL.H264.DDP5.1.Atmos-ADWeb.mkv", @@ -24889,15 +14167,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4194251633, - "modified_timestamp": "2024-04-04T14:12:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3112.256, - "bitrate_kbps": 10781 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04E03.Night.Country.Part.3.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -24909,15 +14179,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4408883072, - "modified_timestamp": "2024-02-01T13:59:02+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3533.322, - "bitrate_kbps": 9982 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S02E07.The.Man.Goes.Through.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -24929,15 +14191,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2805390228, - "modified_timestamp": "2024-01-16T10:42:02+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2718.841, - "bitrate_kbps": 8254 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E06 - The Innocents (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -24949,15 +14203,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1760768626, - "modified_timestamp": "2019-08-25T14:18:37+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3614.592, - "bitrate_kbps": 3897 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E04 - The Female of the Species (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -24969,15 +14215,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1652508169, - "modified_timestamp": "2019-08-25T14:19:51+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3393.792, - "bitrate_kbps": 3895 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E08 - You Found Me (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -24989,15 +14227,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1947224522, - "modified_timestamp": "2019-08-25T14:19:57+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3999.52, - "bitrate_kbps": 3894 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E02 - Cherry (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv", @@ -25009,15 +14239,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1727633728, - "modified_timestamp": "2019-08-25T14:19:27+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3546.848, - "bitrate_kbps": 3896 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E03 - Get Some (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -25029,15 +14251,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1606469566, - "modified_timestamp": "2019-08-25T14:18:23+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3298.144, - "bitrate_kbps": 3896 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E01 - The Name of the Game (1080p AMZN WEB-DL x265 RZeroX).mkv.mkv", @@ -25049,15 +14263,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1757853728, - "modified_timestamp": "2019-08-25T14:15:06+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3609.888, - "bitrate_kbps": 3895 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E05 - Good for the Soul (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -25069,15 +14275,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1760035171, - "modified_timestamp": "2019-08-25T14:19:03+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3615.296, - "bitrate_kbps": 3894 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Boys (2019) Season 1 S01 (1080p AMZN WEB-DL x265 HEVC 10bit EAC3 5.1 RZeroX)/The Boys (2019) - S01E07 - The Self-Preservation Society (1080p AMZN WEB-DL x265 RZeroX).mkv", @@ -25089,15 +14287,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1648845600, - "modified_timestamp": "2019-08-25T14:19:17+00:00", - "resolution": "1920x816", - "codec": "hevc", - "duration_seconds": 3384.736, - "bitrate_kbps": 3897 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E01.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25109,15 +14299,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2131887736, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3338.112, - "bitrate_kbps": 5109 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25129,15 +14311,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1712502779, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2676.096, - "bitrate_kbps": 5119 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25149,15 +14323,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1712865742, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2676.096, - "bitrate_kbps": 5120 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E05.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25169,15 +14335,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1717103184, - "modified_timestamp": "2025-01-16T01:55:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2677.12, - "bitrate_kbps": 5131 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E02.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25189,15 +14347,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1711844757, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2676.096, - "bitrate_kbps": 5117 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E09.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25209,15 +14359,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2481630921, - "modified_timestamp": "2025-01-16T01:55:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2661.035, - "bitrate_kbps": 7460 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E07.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25229,15 +14371,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1712925158, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2677.078, - "bitrate_kbps": 5118 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E10.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25249,15 +14383,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2366734771, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2646.059, - "bitrate_kbps": 7155 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E03.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25269,15 +14395,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1709673855, - "modified_timestamp": "2025-01-16T01:55:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2677.12, - "bitrate_kbps": 5108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[全领域异常解决室].Zen-ryoiki.Ijo.Kaiketsu.Shitsu.2024.S01E04.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv", @@ -25289,15 +14407,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1712997376, - "modified_timestamp": "2025-01-16T01:55:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2676.096, - "bitrate_kbps": 5120 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E01.Heavens.Half.Hour.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -25309,15 +14419,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2421605205, - "modified_timestamp": "2025-03-05T10:08:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3513.459, - "bitrate_kbps": 5513 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E04[1280x720 DivX6.xx].avi", @@ -25327,15 +14429,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1203098808, - "modified_timestamp": "2020-10-02T16:58:33+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.740267, - "bitrate_kbps": 3425 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E05[1280x720 DivX6.xx].avi", @@ -25345,15 +14439,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1057288034, - "modified_timestamp": "2020-10-02T16:58:45+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.773633, - "bitrate_kbps": 3010 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E10[1280x720 DivX6.xx].avi", @@ -25363,15 +14449,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 975089664, - "modified_timestamp": "2020-10-02T16:58:43+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.940467, - "bitrate_kbps": 2776 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E07[1280x720 DivX6.xx].avi", @@ -25381,15 +14459,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 858376478, - "modified_timestamp": "2020-10-02T16:58:44+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.807, - "bitrate_kbps": 2443 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E06[1280x720 DivX6.xx].avi", @@ -25399,15 +14469,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 997385964, - "modified_timestamp": "2020-10-02T16:58:37+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.973833, - "bitrate_kbps": 2839 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E11[1280x720 DivX6.xx].avi", @@ -25417,15 +14479,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1361320994, - "modified_timestamp": "2020-10-02T16:58:40+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 3440.0366, - "bitrate_kbps": 3165 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E09[1280x720 DivX6.xx].avi", @@ -25435,15 +14489,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1186271366, - "modified_timestamp": "2020-10-02T16:58:13+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.740267, - "bitrate_kbps": 3377 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E02[1280x720 DivX6.xx].avi", @@ -25453,15 +14499,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1454272626, - "modified_timestamp": "2020-10-02T16:58:42+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.773633, - "bitrate_kbps": 4140 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E03[1280x720 DivX6.xx].avi", @@ -25471,15 +14509,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1215825556, - "modified_timestamp": "2020-10-02T16:57:20+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2807.337867, - "bitrate_kbps": 3464 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E08[1280x720 DivX6.xx].avi", @@ -25489,15 +14519,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 978503680, - "modified_timestamp": "2020-10-02T16:57:10+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 2809.873733, - "bitrate_kbps": 2785 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bara no nai Hanaya/E01[1280x720 DivX6.xx].avi", @@ -25507,15 +14529,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1373824082, - "modified_timestamp": "2020-10-02T16:58:28+00:00", - "resolution": "1280x720", - "codec": "mpeg4", - "duration_seconds": 3454.384267, - "bitrate_kbps": 3181 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Nemesis EP07 [WEBDL] [1080p] [HULU] [JPN_SUB]/Nemesis.EP07.1080p.HULU.WEB-DL.AAC2.0.H.264-MagicStar.mkv", @@ -25525,15 +14539,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1405488763, - "modified_timestamp": "2021-05-24T14:25:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2764.074, - "bitrate_kbps": 4067 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shogun.2024.S01E02.Servants.of.Two.Masters.REPACK.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -25545,15 +14551,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3071998148, - "modified_timestamp": "2024-02-27T13:28:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3509.728, - "bitrate_kbps": 7002 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E02.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25565,15 +14563,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9038516359, - "modified_timestamp": "2025-03-04T13:22:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3609.92, - "bitrate_kbps": 20030 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E05.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25585,15 +14575,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6852033620, - "modified_timestamp": "2025-03-04T13:21:58+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 4056.128, - "bitrate_kbps": 13514 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E08.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25605,15 +14587,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6352472921, - "modified_timestamp": "2025-03-04T13:22:17+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3779.264, - "bitrate_kbps": 13447 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25625,15 +14599,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7160531284, - "modified_timestamp": "2025-03-04T13:22:11+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2844.224, - "bitrate_kbps": 20140 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E06.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25645,15 +14611,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6387779723, - "modified_timestamp": "2025-03-04T13:22:17+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 4055.36, - "bitrate_kbps": 12601 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E09.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25665,15 +14623,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5063358488, - "modified_timestamp": "2025-03-04T13:17:36+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3158.336, - "bitrate_kbps": 12825 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E04.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25685,15 +14635,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 9134901357, - "modified_timestamp": "2025-03-04T13:22:22+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3727.04, - "bitrate_kbps": 19607 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E03.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25705,15 +14647,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 8312019935, - "modified_timestamp": "2025-03-04T13:22:16+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3374.528, - "bitrate_kbps": 19705 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E10.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25725,15 +14659,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7331049231, - "modified_timestamp": "2025-03-04T13:22:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2986.688, - "bitrate_kbps": 19636 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Offline.Love.S01.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB/Offline.Love.S01E07.2025.2160p.NF.WEB-DL.DDP5.1.DV.H.265-HHWEB.mkv", @@ -25745,213 +14671,117 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6658124665, - "modified_timestamp": "2025-03-04T13:21:32+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 4114.944, - "bitrate_kbps": 12944 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第07話 「刑事の息子」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第07話 「刑事の息子」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2116340972, - "modified_timestamp": "2025-06-27T01:50:58+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.9872, - "bitrate_kbps": 6068 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第09話 「民芸品店の客」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第09話 「民芸品店の客」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1886891001, - "modified_timestamp": "2025-06-27T01:50:55+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2774.933333, - "bitrate_kbps": 5439 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第04話 「時計屋の犬」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第04話 「時計屋の犬」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2472534376, - "modified_timestamp": "2025-06-27T01:50:50+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.6869, - "bitrate_kbps": 7090 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第03話 「瀬戸物屋の娘」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2379529370, - "modified_timestamp": "2025-06-27T01:50:38+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.653533, - "bitrate_kbps": 6823 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第02話 「料亭の小僧」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第02話 「料亭の小僧」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2296937343, - "modified_timestamp": "2025-06-27T01:50:44+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2819.6168, - "bitrate_kbps": 6517 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第08話 「清掃会社の社長」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第08話 「清掃会社の社長」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1889882114, - "modified_timestamp": "2025-06-27T01:50:54+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.953833, - "bitrate_kbps": 5419 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第06話 「翻訳家の友」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第06話 「翻訳家の友」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2102788780, - "modified_timestamp": "2025-06-27T01:50:52+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.620166, - "bitrate_kbps": 6030 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第01話 「煎餅屋の娘」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第01話 「煎餅屋の娘」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2980847741, - "modified_timestamp": "2025-06-27T01:50:53+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3869.332133, - "bitrate_kbps": 6163 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4", "filename": "【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマSP】 赤い指~『新参者』加賀恭一郎再び! (1440x1080i -)", + "title": "【ドラマSP】 赤い指~『新参者』加賀恭一郎再び!", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 6575926523, - "modified_timestamp": "2025-06-27T01:50:52+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 7489.6822, - "bitrate_kbps": 7023 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」 (1440x1080i -)", + "title": "【ドラマ】 新参者 第05話 「洋菓子屋の店員」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2267121964, - "modified_timestamp": "2025-06-27T01:50:52+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2789.119666, - "bitrate_kbps": 6502 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/新参者/【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」(1440x1080i -)", + "title": "【ドラマ】 新参者 第10話(終) 「人形町の刑事」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2520283234, - "modified_timestamp": "2025-06-27T01:50:55+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3584.948033, - "bitrate_kbps": 5624 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E07.Useful.Idiot.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -25963,15 +14793,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4214770862, - "modified_timestamp": "2025-01-03T13:23:56+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3699.68, - "bitrate_kbps": 9113 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E05.Company.Man.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -25983,15 +14805,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3880550954, - "modified_timestamp": "2025-01-03T12:51:26+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3450.624, - "bitrate_kbps": 8996 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E04.White.Mischief.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26003,15 +14817,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4184642669, - "modified_timestamp": "2025-01-03T12:36:00+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3416.608, - "bitrate_kbps": 9798 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E02.Smoke.and.Mirrors.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26023,15 +14829,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2874284664, - "modified_timestamp": "2025-01-03T12:09:43+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3450.016, - "bitrate_kbps": 6664 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E08.Infinite.Largesse.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26043,15 +14841,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5370668474, - "modified_timestamp": "2025-01-03T13:44:19+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 4249.856, - "bitrate_kbps": 10109 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E03.It.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26063,15 +14853,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2592896753, - "modified_timestamp": "2025-01-03T12:20:15+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3348.864, - "bitrate_kbps": 6194 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E01.Il.Mattino.ha.LOro.Bocca.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26083,15 +14865,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3019042001, - "modified_timestamp": "2025-01-03T11:55:56+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3450.016, - "bitrate_kbps": 7000 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Industry.S03.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB/Industry.S03E06.Nikki.Beach.1080p.Max.WEB-DL.DDP.5.1.Atmos.H.264-CHDWEB.mkv", @@ -26103,15 +14877,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4078964973, - "modified_timestamp": "2025-01-03T13:06:28+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3489.888, - "bitrate_kbps": 9350 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E02.Trip.of.a.Lifetime.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26123,15 +14889,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4370402718, - "modified_timestamp": "2024-06-08T05:37:59+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3210.207, - "bitrate_kbps": 10891 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E06.Episode.6.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26143,15 +14901,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2860785400, - "modified_timestamp": "2025-07-02T11:15:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2868.36, - "bitrate_kbps": 7978 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E07.Episode.7.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26163,15 +14913,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2908892805, - "modified_timestamp": "2025-07-02T11:17:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3097.08, - "bitrate_kbps": 7513 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E05.Episode.5.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26183,15 +14925,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2947651189, - "modified_timestamp": "2025-07-02T11:13:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3223.64, - "bitrate_kbps": 7315 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26203,15 +14937,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3029330630, - "modified_timestamp": "2025-07-02T11:11:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3241.52, - "bitrate_kbps": 7476 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E09.Episode.9.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26223,15 +14949,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4335370878, - "modified_timestamp": "2025-07-02T11:20:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4305.16, - "bitrate_kbps": 8056 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26243,15 +14961,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3873185447, - "modified_timestamp": "2025-07-02T11:03:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3955.64, - "bitrate_kbps": 7833 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E08.Episode.8.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26263,15 +14973,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2427440007, - "modified_timestamp": "2025-07-02T11:19:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2542.6, - "bitrate_kbps": 7637 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26283,15 +14985,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3207575410, - "modified_timestamp": "2025-07-02T11:04:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3238.56, - "bitrate_kbps": 7923 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dept.Q.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Dept.Q.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26303,15 +14997,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3282051636, - "modified_timestamp": "2025-07-02T11:10:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3284.6, - "bitrate_kbps": 7993 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Silo.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Silo.S01E04.Truth.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26323,15 +15009,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3671293772, - "modified_timestamp": "2023-05-20T13:21:25+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2706.215, - "bitrate_kbps": 10852 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Silo.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Silo.S01E02.Holstons.Pick.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26343,15 +15021,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3889493092, - "modified_timestamp": "2023-05-20T10:21:24+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2866.855, - "bitrate_kbps": 10853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Silo.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Silo.S01E01.Freedom.Day.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26363,15 +15033,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4879437296, - "modified_timestamp": "2023-05-20T10:21:25+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3563.782, - "bitrate_kbps": 10953 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E16.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26383,15 +15045,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3008042040, - "modified_timestamp": "2023-03-12T10:02:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4291.104, - "bitrate_kbps": 5607 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E12.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26403,15 +15057,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2244723979, - "modified_timestamp": "2023-03-12T10:02:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3234.016, - "bitrate_kbps": 5552 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E15.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26423,15 +15069,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2536547942, - "modified_timestamp": "2023-03-12T10:01:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3638.304, - "bitrate_kbps": 5577 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E09.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26443,15 +15081,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2239191140, - "modified_timestamp": "2023-03-12T10:01:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3203.936, - "bitrate_kbps": 5591 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E11.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26463,15 +15093,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2210442985, - "modified_timestamp": "2023-03-12T10:01:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3192.032, - "bitrate_kbps": 5539 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E13.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26483,15 +15105,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2271306798, - "modified_timestamp": "2023-03-12T10:02:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3292.096, - "bitrate_kbps": 5519 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E10.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26503,15 +15117,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2154965870, - "modified_timestamp": "2023-03-12T10:01:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3115.84, - "bitrate_kbps": 5532 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/The.Glory.S01E14.2022.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -26523,15 +15129,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2276184465, - "modified_timestamp": "2023-03-12T10:02:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3280.096, - "bitrate_kbps": 5551 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26543,15 +15141,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1515439848, - "modified_timestamp": "2022-08-29T14:42:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4632.736, - "bitrate_kbps": 2616 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E05.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26563,15 +15153,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1042035317, - "modified_timestamp": "2022-08-29T14:42:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4082.976, - "bitrate_kbps": 2041 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E12.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26583,15 +15165,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1191367940, - "modified_timestamp": "2022-08-29T14:42:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4285.216, - "bitrate_kbps": 2224 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E09.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26603,15 +15177,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1269463669, - "modified_timestamp": "2022-08-29T14:42:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4211.232, - "bitrate_kbps": 2411 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E16.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26623,15 +15189,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1240228890, - "modified_timestamp": "2022-08-29T14:42:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4968.48, - "bitrate_kbps": 1996 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E13.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26643,15 +15201,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1350540485, - "modified_timestamp": "2022-08-29T14:42:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3855.008, - "bitrate_kbps": 2802 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E08.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26663,15 +15213,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1776670232, - "modified_timestamp": "2022-08-29T14:42:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4022.176, - "bitrate_kbps": 3533 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E04.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26683,15 +15225,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1247576686, - "modified_timestamp": "2022-08-29T14:42:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4107.296, - "bitrate_kbps": 2429 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E11.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26703,15 +15237,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1214496368, - "modified_timestamp": "2022-08-29T14:42:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4326.176, - "bitrate_kbps": 2245 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E15.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26723,15 +15249,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1011046304, - "modified_timestamp": "2022-08-29T14:42:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3989.536, - "bitrate_kbps": 2027 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E02.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26743,15 +15261,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1181458477, - "modified_timestamp": "2022-08-29T14:42:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4170.016, - "bitrate_kbps": 2266 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E06.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26763,15 +15273,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1164784562, - "modified_timestamp": "2022-08-29T14:42:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4194.592, - "bitrate_kbps": 2221 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E03.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26783,15 +15285,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1103413887, - "modified_timestamp": "2022-08-29T14:42:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4242.72, - "bitrate_kbps": 2080 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E07.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26803,15 +15297,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3002700376, - "modified_timestamp": "2022-08-29T14:42:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4059.936, - "bitrate_kbps": 5916 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E10.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26823,15 +15309,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1215651090, - "modified_timestamp": "2022-08-29T14:42:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4211.744, - "bitrate_kbps": 2309 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extraordinary.Attorney.Woo.S01.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV/Extraordinary.Attorney.Woo.S01E14.2022.Netflix.WEB-DL.1080p.x264.DDP-HDCTV.mkv", @@ -26843,15 +15321,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1328371415, - "modified_timestamp": "2022-08-29T14:42:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4247.072, - "bitrate_kbps": 2502 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第05話 「バスクラッシュ・エフェクト」 (1440x1080i x264-AAC)-DoA.mkv", @@ -26861,15 +15331,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 891974664, - "modified_timestamp": "2024-01-05T12:30:25+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.721, - "bitrate_kbps": 5134 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Daredevil.Born.Again.S01E02.With.Interest.1080p.DSNP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -26881,15 +15343,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1969826339, - "modified_timestamp": "2025-03-05T10:13:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2815.959, - "bitrate_kbps": 5596 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E08.Pie.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26901,15 +15355,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3487964285, - "modified_timestamp": "2022-02-21T13:26:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3148.64, - "bitrate_kbps": 8862 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E06.Papier.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26921,15 +15367,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3315754819, - "modified_timestamp": "2022-02-21T13:26:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2921.184, - "bitrate_kbps": 9080 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E05.No.Apologies.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26941,15 +15379,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3358973003, - "modified_timestamp": "2022-02-21T13:26:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2929.312, - "bitrate_kbps": 9173 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E04.In.a.Tree.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26961,15 +15391,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3218846298, - "modified_timestamp": "2022-02-21T13:26:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2776.928, - "bitrate_kbps": 9273 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E03.Spoonful.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -26981,15 +15403,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3367295660, - "modified_timestamp": "2022-02-21T13:06:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2849.376, - "bitrate_kbps": 9454 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E07.Reacher.Said.Nothing.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -27001,15 +15415,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2941769996, - "modified_timestamp": "2022-02-21T13:26:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2504.832, - "bitrate_kbps": 9395 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E02.First.Dance.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -27021,15 +15427,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3758843292, - "modified_timestamp": "2022-02-21T13:07:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3174.304, - "bitrate_kbps": 9473 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S01E01.Welcome.to.Margrave.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -27041,15 +15439,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3709326038, - "modified_timestamp": "2022-02-21T12:52:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3243.52, - "bitrate_kbps": 9148 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.S01.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1-ADWeb/Shogun.S01E06.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1-ADWeb.mkv", @@ -27061,33 +15451,17 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6382547342, - "modified_timestamp": "2024-03-26T09:48:08+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3389.952, - "bitrate_kbps": 15062 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv", "filename": "The Amateur (2025) (2160p iT WEB-DL H265 DV DDP Atmos 5.1 English - HONE).mkv", "category": "series", - "title": "The Amateur (2025) ( iT DV DDP Atmos 5 1 English - HONE)", + "title": "The Amateur (2025)", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 13667380355, - "modified_timestamp": "2025-06-10T10:37:49+00:00", - "resolution": "3840x1608", - "codec": "hevc", - "duration_seconds": 7353.917, - "bitrate_kbps": 14868 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E10.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27099,15 +15473,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2155846564, - "modified_timestamp": "2023-03-20T14:20:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3115.84, - "bitrate_kbps": 5535 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E13.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27119,15 +15485,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2272228857, - "modified_timestamp": "2023-03-20T14:20:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3292.096, - "bitrate_kbps": 5521 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E15.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27139,15 +15497,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2537545472, - "modified_timestamp": "2023-03-20T14:20:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3638.304, - "bitrate_kbps": 5579 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E16.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27159,15 +15509,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3490013415, - "modified_timestamp": "2023-03-20T14:20:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4291.232, - "bitrate_kbps": 6506 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E14.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27179,15 +15521,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2277128304, - "modified_timestamp": "2023-03-20T14:20:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3280.096, - "bitrate_kbps": 5553 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E12.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27199,15 +15533,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2245613438, - "modified_timestamp": "2023-03-20T14:20:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3234.016, - "bitrate_kbps": 5554 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E11.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27219,15 +15545,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2211245090, - "modified_timestamp": "2023-03-20T14:20:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3192.032, - "bitrate_kbps": 5541 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/黑暗荣耀.The.Glory.2022.S02.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB/The.Glory.2022.S02E09.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-PTerWEB.mkv", @@ -27239,15 +15557,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2240091018, - "modified_timestamp": "2023-03-20T14:20:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3203.936, - "bitrate_kbps": 5593 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Reacher.S03E03.Number.2.with.a.Bullet.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -27259,15 +15569,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3746282698, - "modified_timestamp": "2025-02-23T11:59:52+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3269.183, - "bitrate_kbps": 9167 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP01.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27277,15 +15579,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 722872690, - "modified_timestamp": "2023-01-15T10:30:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3060.057, - "bitrate_kbps": 1889 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP05.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27295,15 +15589,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 627907814, - "modified_timestamp": "2023-01-15T10:30:22+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3000.03, - "bitrate_kbps": 1674 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP04.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27313,15 +15599,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 624483743, - "modified_timestamp": "2023-01-15T10:30:21+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3000.03, - "bitrate_kbps": 1665 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP02.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27331,15 +15609,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 560790116, - "modified_timestamp": "2023-01-15T10:30:20+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2940.037, - "bitrate_kbps": 1525 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP06.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27349,15 +15619,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 679888251, - "modified_timestamp": "2023-01-15T10:30:21+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3300.03, - "bitrate_kbps": 1648 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/坂道上的家.Sakaie.2019.HDTV.1080p.x265.10bit-Yumi/Sakaie.2019.EP03.HDTV.1080p.x265.10bit-Yumi.mkv", @@ -27367,15 +15629,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 614488794, - "modified_timestamp": "2023-01-15T10:30:16+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3000.03, - "bitrate_kbps": 1638 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E03.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -27385,15 +15639,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1105532121, - "modified_timestamp": "2021-11-18T13:19:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2732.478, - "bitrate_kbps": 3236 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Saiai.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV/Saiai.E02.2021.KKTV.WEB-DL.1080p.x264.AAC-HDCTV.mkv", @@ -27403,15 +15649,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1088170708, - "modified_timestamp": "2021-11-18T13:19:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2704.776, - "bitrate_kbps": 3218 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E06.The.Flip.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27423,15 +15661,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1755161141, - "modified_timestamp": "2022-12-25T17:17:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4166.12, - "bitrate_kbps": 3370 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E05.Imposter.Syndrome.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27443,15 +15673,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1653316515, - "modified_timestamp": "2022-12-25T17:17:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3539.68, - "bitrate_kbps": 3736 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E02.Made.in.China.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27463,15 +15685,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1547308205, - "modified_timestamp": "2022-12-25T17:17:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3522.52, - "bitrate_kbps": 3514 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E03.Charlie.Foxtrot.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27483,15 +15697,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1648647662, - "modified_timestamp": "2022-12-25T17:17:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3416.56, - "bitrate_kbps": 3860 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E01.Invisible.Men.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27503,15 +15709,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1669981347, - "modified_timestamp": "2022-12-25T17:18:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3455.88, - "bitrate_kbps": 3865 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Capture.S02.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB/The.Capture.S02E04.therealzacturner.1080p.iP.WEB-DL.AAC2.0.H.264-playWEB.mkv", @@ -27523,15 +15721,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1681989023, - "modified_timestamp": "2022-12-25T17:18:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3536.28, - "bitrate_kbps": 3805 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27543,15 +15733,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3109763102, - "modified_timestamp": "2022-11-14T15:25:51+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3161.16, - "bitrate_kbps": 7869 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27563,15 +15745,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3450548173, - "modified_timestamp": "2022-11-14T15:25:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3107.005, - "bitrate_kbps": 8884 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27583,15 +15757,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3503089787, - "modified_timestamp": "2022-11-14T15:25:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2984.82, - "bitrate_kbps": 9389 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Extras/The.World.Between.Us.S01.Extras.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27601,15 +15767,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 6774651359, - "modified_timestamp": "2022-11-14T15:25:55+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5433.305, - "bitrate_kbps": 9974 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27621,15 +15779,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3245847976, - "modified_timestamp": "2022-11-14T15:25:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2876.01, - "bitrate_kbps": 9028 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27641,15 +15791,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3279557115, - "modified_timestamp": "2022-11-14T15:25:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3082.015, - "bitrate_kbps": 8512 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27661,15 +15803,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2851409213, - "modified_timestamp": "2022-11-14T15:25:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3121.855, - "bitrate_kbps": 7306 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27681,15 +15815,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3284681218, - "modified_timestamp": "2022-11-14T15:25:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3144.575, - "bitrate_kbps": 8356 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27701,15 +15827,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3391967803, - "modified_timestamp": "2022-11-14T15:25:54+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3151.415, - "bitrate_kbps": 8610 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27721,15 +15839,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3460907822, - "modified_timestamp": "2022-11-14T15:25:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3274.54, - "bitrate_kbps": 8455 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/我们与恶的距离.The.World.Between.Us.S01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/The.World.Between.Us.S01E04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -27741,15 +15851,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3521648528, - "modified_timestamp": "2022-11-14T15:25:47+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3089.09, - "bitrate_kbps": 9120 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E10.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27761,15 +15863,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2153418063, - "modified_timestamp": "2023-01-12T16:22:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4465.427, - "bitrate_kbps": 3857 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E01.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27781,15 +15875,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2297911175, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4827.389, - "bitrate_kbps": 3808 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E08.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27801,15 +15887,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2361370251, - "modified_timestamp": "2023-01-12T16:22:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4872.434, - "bitrate_kbps": 3877 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E14.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27821,15 +15899,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2158704459, - "modified_timestamp": "2023-01-12T16:13:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4431.46, - "bitrate_kbps": 3897 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E05.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27841,15 +15911,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1936658505, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4041.237, - "bitrate_kbps": 3833 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E04.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27861,15 +15923,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1906387910, - "modified_timestamp": "2023-01-12T16:22:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3954.45, - "bitrate_kbps": 3856 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E15.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27881,15 +15935,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1877064330, - "modified_timestamp": "2023-01-12T16:18:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3846.409, - "bitrate_kbps": 3904 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E09.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27901,15 +15947,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2086077238, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4301.463, - "bitrate_kbps": 3879 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E11.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27921,15 +15959,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1992837504, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4098.394, - "bitrate_kbps": 3889 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E06.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27941,15 +15971,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2129209521, - "modified_timestamp": "2023-01-12T16:22:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4446.408, - "bitrate_kbps": 3830 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E02.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27961,15 +15983,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2129908948, - "modified_timestamp": "2023-01-12T16:22:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4421.45, - "bitrate_kbps": 3853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E13.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -27981,15 +15995,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2194776761, - "modified_timestamp": "2023-01-12T16:15:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4508.404, - "bitrate_kbps": 3894 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E12.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -28001,15 +16007,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2201197357, - "modified_timestamp": "2023-01-12T16:15:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4519.415, - "bitrate_kbps": 3896 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E03.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -28021,15 +16019,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1795387291, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3702.465, - "bitrate_kbps": 3879 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E16.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -28041,15 +16031,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2537890537, - "modified_timestamp": "2023-01-12T16:18:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5298.526, - "bitrate_kbps": 3831 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/财阀家的小儿子.Reborn.Rich.2022.S01.1080p.friDay.WEB-DL.H264.AAC-OurTV/财阀家的小儿子.Reborn.Rich.2022.S01E07.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -28061,15 +16043,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2052230506, - "modified_timestamp": "2023-01-12T16:22:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4238.4, - "bitrate_kbps": 3873 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Study.Group.2025.S01E02.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", @@ -28081,15 +16055,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2395424022, - "modified_timestamp": "2025-02-13T09:21:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2563.16, - "bitrate_kbps": 7476 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E14.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28101,15 +16067,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4295886868, - "modified_timestamp": "2024-02-03T11:27:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3698.655, - "bitrate_kbps": 9291 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E03.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28121,15 +16079,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4047606897, - "modified_timestamp": "2024-02-03T11:27:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3488.405, - "bitrate_kbps": 9282 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E07.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28141,15 +16091,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4101315200, - "modified_timestamp": "2024-02-03T11:27:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3529.655, - "bitrate_kbps": 9295 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E10.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28161,15 +16103,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4114622954, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3526.36, - "bitrate_kbps": 9334 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E06.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28181,15 +16115,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4554939071, - "modified_timestamp": "2024-02-03T11:27:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3906.445, - "bitrate_kbps": 9328 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E11.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28201,15 +16127,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4125322322, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3543.835, - "bitrate_kbps": 9312 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E15.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28221,15 +16139,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4606024614, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3961.67, - "bitrate_kbps": 9301 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E02.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28241,15 +16151,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4455365471, - "modified_timestamp": "2024-02-03T11:27:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3826.54, - "bitrate_kbps": 9314 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E04.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28261,15 +16163,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4483086085, - "modified_timestamp": "2024-02-03T11:27:47+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3823.07, - "bitrate_kbps": 9381 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E13.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28281,15 +16175,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4097175866, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3507.255, - "bitrate_kbps": 9345 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E09.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28301,15 +16187,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4148740804, - "modified_timestamp": "2024-02-03T11:27:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3507.505, - "bitrate_kbps": 9462 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E16.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28321,15 +16199,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4641917872, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3996.37, - "bitrate_kbps": 9292 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E01.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28341,15 +16211,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4154781570, - "modified_timestamp": "2024-02-03T11:27:48+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3546.965, - "bitrate_kbps": 9370 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E08.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28361,15 +16223,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4488367153, - "modified_timestamp": "2024-02-03T11:27:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3849.6, - "bitrate_kbps": 9327 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E05.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28381,15 +16235,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4255117967, - "modified_timestamp": "2024-02-03T11:27:38+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3648.775, - "bitrate_kbps": 9329 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Stranger.S02.1080p.BluRay.x265.10bit-WiKi/Stranger.S02E12.1080p.BluRay.x265.10bit-WiKi.mkv", @@ -28401,15 +16247,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4160756054, - "modified_timestamp": "2024-02-03T11:27:45+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3557.18, - "bitrate_kbps": 9357 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E01.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28419,15 +16257,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1669954114, - "modified_timestamp": "2020-01-02T12:28:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4142.045, - "bitrate_kbps": 3225 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E02.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28437,15 +16267,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1445216651, - "modified_timestamp": "2020-01-02T12:27:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3594.1, - "bitrate_kbps": 3216 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E07.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28455,15 +16277,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1116282031, - "modified_timestamp": "2020-01-02T12:28:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2784.096, - "bitrate_kbps": 3207 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E09.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28473,15 +16287,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1114222887, - "modified_timestamp": "2020-01-02T12:29:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.148, - "bitrate_kbps": 3206 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E11.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28491,15 +16297,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1739275469, - "modified_timestamp": "2020-01-02T12:30:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4330.173, - "bitrate_kbps": 3213 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E04.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28509,15 +16307,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1125580074, - "modified_timestamp": "2020-01-02T12:28:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2796.89, - "bitrate_kbps": 3219 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E03.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28527,15 +16317,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1135084376, - "modified_timestamp": "2020-01-02T12:29:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2786.38, - "bitrate_kbps": 3258 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E08.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28545,15 +16327,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1115106536, - "modified_timestamp": "2020-01-02T12:29:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2793.105, - "bitrate_kbps": 3193 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E06.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28563,15 +16337,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1124363545, - "modified_timestamp": "2020-01-02T12:27:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2795.102, - "bitrate_kbps": 3218 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E10.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28581,15 +16347,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2510317612, - "modified_timestamp": "2020-01-02T12:30:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3859.969, - "bitrate_kbps": 5202 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Grande.Maison.Tokyo.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY/Grande.Maison.Tokyo.E05.2019.KKTV.WEB-DL.1080p.x264.AAC-AREY.mkv", @@ -28599,15 +16357,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1138058506, - "modified_timestamp": "2020-01-02T12:27:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2776.085, - "bitrate_kbps": 3279 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S02E08.What.Was.Meant.To.Be.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28619,15 +16369,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4686720073, - "modified_timestamp": "2023-10-17T08:26:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4186.433, - "bitrate_kbps": 8956 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S02E07.Daes.DaeMar.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28639,15 +16381,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4140847476, - "modified_timestamp": "2023-10-17T08:25:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3910.574, - "bitrate_kbps": 8471 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S02E04.Daughter.of.the.Night.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28659,15 +16393,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3843284221, - "modified_timestamp": "2023-10-17T05:03:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3656.695, - "bitrate_kbps": 8408 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S02E06.Eyes.Without.Pity.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28679,15 +16405,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4882756279, - "modified_timestamp": "2023-10-17T08:26:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4185.974, - "bitrate_kbps": 9331 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S02E05.Damane.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28699,15 +16417,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4744257679, - "modified_timestamp": "2023-10-17T08:26:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4124.287, - "bitrate_kbps": 9202 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/The.Peripheral.S01E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -28719,15 +16429,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4014143832, - "modified_timestamp": "2022-11-16T15:09:38+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3527.072, - "bitrate_kbps": 9104 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/The.Peripheral.S01E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -28739,15 +16441,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3615549692, - "modified_timestamp": "2022-12-07T14:29:23+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3455.872, - "bitrate_kbps": 8369 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Peripheral.S01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/The.Peripheral.S01E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -28759,15 +16453,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4067868203, - "modified_timestamp": "2022-11-09T14:24:11+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3498.72, - "bitrate_kbps": 9301 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01E01.Bases.Loaded.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -28779,15 +16465,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3711340813, - "modified_timestamp": "2024-06-20T05:30:51+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2751.457, - "bitrate_kbps": 10790 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第03話 「きみがぼくを見つけた夜」 (1440x1080i x264-AAC)-DoA.mkv", @@ -28797,15 +16475,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 922449257, - "modified_timestamp": "2024-01-05T12:39:47+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.726, - "bitrate_kbps": 5310 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E08.Dum.Spiro.Spero.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28817,15 +16487,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3198273879, - "modified_timestamp": "2024-05-01T08:29:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3759.84, - "bitrate_kbps": 6805 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E10.Exodus.Eclipsed.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28837,15 +16499,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2536923855, - "modified_timestamp": "2024-05-01T08:29:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3249.663, - "bitrate_kbps": 6245 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E02.Love.is.Back.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28857,15 +16511,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3563138245, - "modified_timestamp": "2024-05-01T08:29:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3849.304, - "bitrate_kbps": 7405 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E03.I.Have.Butterflies.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28877,15 +16523,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2535421683, - "modified_timestamp": "2024-05-01T08:29:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3247.119, - "bitrate_kbps": 6246 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E11.Last.Christmas.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28897,15 +16535,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2765160364, - "modified_timestamp": "2024-05-01T08:29:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3534.656, - "bitrate_kbps": 6258 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E12.Goodbye.Earth.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28917,15 +16547,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3052126925, - "modified_timestamp": "2024-05-01T08:29:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3440.98, - "bitrate_kbps": 7095 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E07.Arirang.Gone.But.Not.Forgotten.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28937,15 +16559,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3226847415, - "modified_timestamp": "2024-05-01T08:29:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3570.234, - "bitrate_kbps": 7230 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E01.Football.Bloody.Hell.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28957,15 +16571,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3115390189, - "modified_timestamp": "2024-05-01T08:29:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3923.378, - "bitrate_kbps": 6352 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E05.The.Girl.with.a.Cat.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28977,15 +16583,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2863550468, - "modified_timestamp": "2024-05-01T08:29:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3659.907, - "bitrate_kbps": 6259 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E06.Much.Ado.About.Nothing.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -28997,15 +16595,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3047589254, - "modified_timestamp": "2024-05-01T08:29:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3888.885, - "bitrate_kbps": 6269 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E09.Silver.Lining.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -29017,15 +16607,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3552678051, - "modified_timestamp": "2024-05-01T08:29:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3538.243, - "bitrate_kbps": 8032 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Goodbye.Earth.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Goodbye.Earth.S01E04.Felix.Culpa.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -29037,15 +16619,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2614160366, - "modified_timestamp": "2024-05-01T08:29:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2850.848, - "bitrate_kbps": 7335 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP01 720p HDTV x264 AAC-DoA.mkv", @@ -29055,15 +16629,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1684775860, - "modified_timestamp": "2024-01-12T11:17:12+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2986.62, - "bitrate_kbps": 4512 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第08話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -29073,15 +16639,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1301115796, - "modified_timestamp": "2024-06-24T12:06:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3243.99, - "bitrate_kbps": 3208 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E14.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29093,15 +16651,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1545373918, - "modified_timestamp": "2021-01-26T07:17:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3956.0, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E04.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29113,15 +16663,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1487505578, - "modified_timestamp": "2021-01-26T07:17:23+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3804.832, - "bitrate_kbps": 3127 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E15.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29133,15 +16675,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1543537639, - "modified_timestamp": "2021-01-26T07:17:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3951.136, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E05.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29153,15 +16687,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1587759515, - "modified_timestamp": "2021-01-26T07:17:17+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4060.064, - "bitrate_kbps": 3128 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E06.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29173,15 +16699,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1590266146, - "modified_timestamp": "2021-01-26T07:16:54+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4066.976, - "bitrate_kbps": 3128 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E16.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29193,15 +16711,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2061672442, - "modified_timestamp": "2021-01-26T07:17:23+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5279.136, - "bitrate_kbps": 3124 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E08.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29213,15 +16723,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1532938265, - "modified_timestamp": "2021-01-26T07:17:22+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3922.848, - "bitrate_kbps": 3126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E07.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29233,15 +16735,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1632337395, - "modified_timestamp": "2021-01-26T07:17:02+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4176.288, - "bitrate_kbps": 3126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E09.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29253,15 +16747,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1563783362, - "modified_timestamp": "2021-01-26T07:17:16+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4014.112, - "bitrate_kbps": 3116 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E01.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29273,15 +16759,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1724412575, - "modified_timestamp": "2021-01-26T07:17:05+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4413.984, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E11.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29293,15 +16771,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1655673205, - "modified_timestamp": "2021-01-26T07:17:13+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4237.984, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E10.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29313,15 +16783,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1659362846, - "modified_timestamp": "2021-01-26T07:17:14+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4247.072, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E13.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29333,15 +16795,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1625513212, - "modified_timestamp": "2021-01-26T07:17:21+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4160.16, - "bitrate_kbps": 3125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E03.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29353,15 +16807,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1545863566, - "modified_timestamp": "2021-01-26T07:17:21+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3955.488, - "bitrate_kbps": 3126 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E12.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29373,15 +16819,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1640184973, - "modified_timestamp": "2021-01-26T07:17:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4199.456, - "bitrate_kbps": 3124 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Itaewon.Class.S01.720p.NF.WEB-DL.DDP2.0.x264-ExREN/Itaewon.Class.S01E02.720p.NF.WEB-DL.DDP2.0.x264-ExREN.mkv", @@ -29393,15 +16831,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1376346944, - "modified_timestamp": "2021-01-26T07:17:23+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4026.528, - "bitrate_kbps": 2734 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E08.Ice.Chips.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29413,15 +16843,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1701744836, - "modified_timestamp": "2024-07-07T01:57:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2393.308, - "bitrate_kbps": 5688 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E10.Forever.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29433,15 +16855,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1700177415, - "modified_timestamp": "2024-07-07T01:57:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2572.57, - "bitrate_kbps": 5287 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E02.Next.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29453,15 +16867,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1201138716, - "modified_timestamp": "2024-07-07T01:54:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1626.0, - "bitrate_kbps": 5909 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E05.Children.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29473,15 +16879,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1342848715, - "modified_timestamp": "2024-07-07T01:56:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2051.925, - "bitrate_kbps": 5235 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E03.Doors.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29493,15 +16891,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1085943094, - "modified_timestamp": "2024-07-07T01:54:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1770.185, - "bitrate_kbps": 4907 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E07.Legacy.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29513,15 +16903,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1088191360, - "modified_timestamp": "2024-07-07T01:56:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1712.753, - "bitrate_kbps": 5082 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E09.Apologies.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29533,15 +16915,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1612338113, - "modified_timestamp": "2024-07-07T01:56:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2580.453, - "bitrate_kbps": 4998 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E01.Tomorrow.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29553,15 +16927,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1496115884, - "modified_timestamp": "2024-07-07T01:53:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2206.872, - "bitrate_kbps": 5423 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E04.Violet.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29573,15 +16939,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1294172974, - "modified_timestamp": "2024-07-07T01:55:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1985.692, - "bitrate_kbps": 5213 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S03.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/The.Bear.S03E06.Napkins.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -29593,15 +16951,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1322589666, - "modified_timestamp": "2024-07-07T01:56:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1984.441, - "bitrate_kbps": 5331 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E06.Dear.Friend.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29613,15 +16963,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2642627978, - "modified_timestamp": "2021-12-23T13:29:05+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3434.816, - "bitrate_kbps": 6154 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E05.Turn.Your.Back.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29633,15 +16975,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2567936405, - "modified_timestamp": "2021-12-23T13:25:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3400.864, - "bitrate_kbps": 6040 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E07.Voleth.Meir.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29653,15 +16987,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2445018031, - "modified_timestamp": "2021-12-23T13:55:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3276.864, - "bitrate_kbps": 5969 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E08.Family.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29673,15 +16999,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2502712408, - "modified_timestamp": "2021-12-23T13:55:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3292.768, - "bitrate_kbps": 6080 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E02.Kaer.Morhen.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29693,15 +17011,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2724530494, - "modified_timestamp": "2021-12-23T12:11:39+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3508.832, - "bitrate_kbps": 6211 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E04.Redanian.Intelligence.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29713,15 +17023,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2563232490, - "modified_timestamp": "2021-12-23T13:17:19+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3320.768, - "bitrate_kbps": 6175 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E01.A.Grain.of.Truth.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29733,15 +17035,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2977960792, - "modified_timestamp": "2021-12-23T12:06:46+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3786.784, - "bitrate_kbps": 6291 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Witcher.S02.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES/The.Witcher.S02E03.What.Is.Lost.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.H.265-TEPES.mkv", @@ -29753,15 +17047,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2721240490, - "modified_timestamp": "2021-12-23T12:17:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3566.88, - "bitrate_kbps": 6103 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zenryouiki.Ijou.Kaiketsushitsu.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -29771,15 +17057,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2331423970, - "modified_timestamp": "2024-10-23T11:31:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2677.056, - "bitrate_kbps": 6967 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E14.The.Hand.the.Monkfish.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29791,15 +17069,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1522756112, - "modified_timestamp": "2021-01-19T17:17:17+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4681.76, - "bitrate_kbps": 2602 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E03.Sleeping.Witch.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29811,15 +17081,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2186178093, - "modified_timestamp": "2021-01-19T17:17:22+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4557.984, - "bitrate_kbps": 3837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E07.The.Cheerful.Dog.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29831,15 +17093,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1570999646, - "modified_timestamp": "2021-01-19T17:17:21+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4301.728, - "bitrate_kbps": 2921 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E16.Finding.The.Real.Face.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29851,15 +17105,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1907547750, - "modified_timestamp": "2021-01-19T17:17:18+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4872.864, - "bitrate_kbps": 3131 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E12.Romeo.and.Juliet.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29871,15 +17117,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1468218901, - "modified_timestamp": "2021-01-19T17:16:36+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4420.256, - "bitrate_kbps": 2657 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E09.King.Donkey.Ears.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29891,15 +17129,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1838001746, - "modified_timestamp": "2021-01-19T17:17:20+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4464.416, - "bitrate_kbps": 3293 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E08.Beauty.and.the.Beast.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29911,15 +17141,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1800370828, - "modified_timestamp": "2021-01-19T17:17:06+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4601.504, - "bitrate_kbps": 3130 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E04.Zombie.Kid.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29931,15 +17153,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2037331021, - "modified_timestamp": "2021-01-19T17:17:26+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4185.504, - "bitrate_kbps": 3894 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E05.Rapunzel.And.The.Cursed.Castle.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29951,15 +17165,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1489640819, - "modified_timestamp": "2021-01-19T17:16:56+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4360.224, - "bitrate_kbps": 2733 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E15.The.Tale.of.Two.Brothers.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29971,15 +17177,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1564824903, - "modified_timestamp": "2021-01-19T17:17:15+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4701.088, - "bitrate_kbps": 2662 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E13.The.Father.of.the.Two.Sisters.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -29991,15 +17189,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1665197302, - "modified_timestamp": "2021-01-19T17:17:27+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4943.264, - "bitrate_kbps": 2694 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E11.The.Ugly.Duckling.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -30011,15 +17201,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1671817992, - "modified_timestamp": "2021-01-19T17:16:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5125.152, - "bitrate_kbps": 2609 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E02.The.Lady.in.Red.Shoes.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -30031,15 +17213,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2182295723, - "modified_timestamp": "2021-01-19T17:17:16+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4399.136, - "bitrate_kbps": 3968 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E10.The.Girl.Who.Cried.Wolf.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -30051,15 +17225,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1586021370, - "modified_timestamp": "2021-01-19T17:17:18+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4895.904, - "bitrate_kbps": 2591 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E06.Bluebeards.Secret.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -30071,15 +17237,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1635113396, - "modified_timestamp": "2021-01-19T17:17:19+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4254.496, - "bitrate_kbps": 3074 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/It's.Okay.to.Not.Be.Okay.2020.S01.Complete.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688/Its.Okay.to.Not.Be.Okay.2020.S01E01.The.Boy.Who.Fed.on.Nightmares.1080p.NF.WEB-DL.DDP.2.0.x265.10bit-monster6688.mkv", @@ -30091,15 +17249,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2169210803, - "modified_timestamp": "2021-01-19T17:16:58+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4472.096, - "bitrate_kbps": 3880 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E02.Osaka.Japan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30111,15 +17261,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1297450225, - "modified_timestamp": "2019-06-18T12:45:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1940.397, - "bitrate_kbps": 5349 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E05.Chiayi.Taiwan.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30131,15 +17273,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1349472242, - "modified_timestamp": "2019-06-18T12:46:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2014.429, - "bitrate_kbps": 5359 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E01.Bangkok.Thailand.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30151,15 +17285,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1117087070, - "modified_timestamp": "2019-06-18T12:46:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1812.311, - "bitrate_kbps": 4931 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E04.Yogyakarta.Indonesia.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30171,15 +17297,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1364559821, - "modified_timestamp": "2019-06-18T12:46:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1878.377, - "bitrate_kbps": 5811 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E06.Seoul.South.Korea.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30191,15 +17309,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1015557438, - "modified_timestamp": "2019-06-18T12:46:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1784.283, - "bitrate_kbps": 4553 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E08.Singapore.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30211,15 +17321,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1356894481, - "modified_timestamp": "2019-06-18T12:46:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1948.405, - "bitrate_kbps": 5571 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E03.Delhi.India.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30231,15 +17333,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1173163337, - "modified_timestamp": "2019-06-18T12:46:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1830.287, - "bitrate_kbps": 5127 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E09.Cebu.Philippines.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30251,15 +17345,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1502931915, - "modified_timestamp": "2019-06-18T12:46:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1904.403, - "bitrate_kbps": 6313 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Street.Food.S01.1080p.NF.WEB-DL.DDP5.1.x264-NTG/Street.Food.S01E07.Ho.Chi.Minh.City.Vietnam.1080p.NF.WEB-DL.DDP5.1.x264-NTG.mkv", @@ -30271,15 +17357,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1415226013, - "modified_timestamp": "2019-06-18T12:45:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1794.251, - "bitrate_kbps": 6310 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【04】【1080P】【中日双语】.mp4", @@ -30289,15 +17367,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 599326455, - "modified_timestamp": "2022-03-12T14:16:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1499.865, - "bitrate_kbps": 3196 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【06】【END】【1080P】【中日双语】.mp4", @@ -30307,15 +17377,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 580016882, - "modified_timestamp": "2022-03-12T14:16:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1480.853333, - "bitrate_kbps": 3133 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【05】【1080P】【中日双语】.mp4", @@ -30325,15 +17387,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 599298929, - "modified_timestamp": "2022-03-12T14:16:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1499.306667, - "bitrate_kbps": 3197 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01】【1080P】【中日双语】.mp4", @@ -30343,15 +17397,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 586881809, - "modified_timestamp": "2022-03-12T14:16:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1498.986667, - "bitrate_kbps": 3132 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【03】【1080P】【中日双语】.mp4", @@ -30361,15 +17407,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 599224667, - "modified_timestamp": "2022-03-12T14:16:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1499.605333, - "bitrate_kbps": 3196 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【01-06】【END】【1080P】【中日双语】/【幻月字幕组】【21年日剧】【38岁离婚单身女尝试相亲APP的成果日记】【02】【1080P】【中日双语】.mp4", @@ -30379,15 +17417,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 599269112, - "modified_timestamp": "2022-03-12T14:16:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1499.648, - "bitrate_kbps": 3196 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Yellowstone.2018.S05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Yellowstone.2018.S05E01.One.Hundred.Years.is.Nothing.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -30399,15 +17429,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4590290222, - "modified_timestamp": "2022-11-18T14:04:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3845.92, - "bitrate_kbps": 9548 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Yellowstone.2018.S05.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Yellowstone.2018.S05E02.The.Sting.of.Wisdom.1080p.REPACK.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -30419,15 +17441,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4266792867, - "modified_timestamp": "2022-11-18T14:05:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3561.504, - "bitrate_kbps": 9584 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/A.Shop.for.Killers.S01E01.Murthehelp.1080p.Disney+.WEB-DL.DDP.5.1.H.264-CHDWEB.mkv", @@ -30439,15 +17453,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2552190478, - "modified_timestamp": "2024-01-20T11:27:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2978.816, - "bitrate_kbps": 6854 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E06.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30459,15 +17465,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 750660540, - "modified_timestamp": "2025-05-12T12:42:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1945.77, - "bitrate_kbps": 3086 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E01.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30479,15 +17477,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 482736526, - "modified_timestamp": "2025-05-12T12:39:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1211.456, - "bitrate_kbps": 3187 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E05.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30499,15 +17489,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 538277468, - "modified_timestamp": "2025-05-12T12:42:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1507.05, - "bitrate_kbps": 2857 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E04.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30519,15 +17501,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 656402415, - "modified_timestamp": "2025-05-12T12:42:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1652.544, - "bitrate_kbps": 3177 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E03.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30539,15 +17513,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 791460692, - "modified_timestamp": "2025-05-12T12:41:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1947.455, - "bitrate_kbps": 3251 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01.2025.1080p.WEB-DL.H264.AAC-ADWeb/Shiawase.Kanako.no.Koroshiya.Seikatsu.S01E02.Repack.2025.1080p.WEB-DL.H264.AAC-ADWeb.mkv", @@ -30559,15 +17525,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 601842833, - "modified_timestamp": "2025-05-12T12:41:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1487.232, - "bitrate_kbps": 3237 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E11.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30579,15 +17537,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2343247646, - "modified_timestamp": "2026-02-12T11:47:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3371.136, - "bitrate_kbps": 5560 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E09.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30599,15 +17549,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2747735142, - "modified_timestamp": "2026-02-12T11:46:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3931.456, - "bitrate_kbps": 5591 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E05.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30619,15 +17561,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2759630060, - "modified_timestamp": "2026-02-12T11:44:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3931.872, - "bitrate_kbps": 5614 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30639,15 +17573,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2598622177, - "modified_timestamp": "2026-02-12T11:42:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3721.92, - "bitrate_kbps": 5585 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E12.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30659,15 +17585,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2636816106, - "modified_timestamp": "2026-02-12T11:48:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3789.824, - "bitrate_kbps": 5566 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E06.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30679,15 +17597,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2780664900, - "modified_timestamp": "2026-02-12T11:44:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3980.768, - "bitrate_kbps": 5588 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E02.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30699,15 +17609,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2841685781, - "modified_timestamp": "2026-02-12T11:42:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4083.872, - "bitrate_kbps": 5566 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E08.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30719,15 +17621,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2713986064, - "modified_timestamp": "2026-02-12T11:46:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3886.624, - "bitrate_kbps": 5586 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E10.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30739,15 +17633,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3491058510, - "modified_timestamp": "2026-02-12T11:47:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4952.896, - "bitrate_kbps": 5638 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E04.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30759,15 +17645,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2908611768, - "modified_timestamp": "2026-02-12T11:43:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4156.96, - "bitrate_kbps": 5597 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E03.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30779,15 +17657,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2459784165, - "modified_timestamp": "2026-02-12T11:43:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3515.712, - "bitrate_kbps": 5597 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Can.This.Love.Be.Translated.S01.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Can.This.Love.Be.Translated.S01E07.2026.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -30799,15 +17669,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3132970509, - "modified_timestamp": "2026-02-12T11:45:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4157.696, - "bitrate_kbps": 6028 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #07 「誕生日会は恋の決戦!」 1080p HDTV x264 AAC.mkv", @@ -30817,15 +17679,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1094217335, - "modified_timestamp": "2024-04-04T01:45:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1390.022, - "bitrate_kbps": 6297 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #09 「愛と涙の結婚式!松永の決意」 1080p HDTV x264 AAC.mkv", @@ -30835,15 +17689,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1117082850, - "modified_timestamp": "2024-04-04T01:45:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1389.988, - "bitrate_kbps": 6429 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #11 「クライマックス突入!最大の危機」 1080p HDTV x264 AAC.mkv", @@ -30853,15 +17699,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 933541122, - "modified_timestamp": "2024-04-04T01:45:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1375.04, - "bitrate_kbps": 5431 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #08 「あふれる思い!涙の告白」 1080p HDTV x264 AAC.mkv", @@ -30871,15 +17709,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1114765246, - "modified_timestamp": "2024-04-04T01:45:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1390.022, - "bitrate_kbps": 6415 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #04 「合コンで事件発生」 1080p HDTV x264 AAC.mkv", @@ -30889,15 +17719,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1234698072, - "modified_timestamp": "2024-04-04T01:45:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1389.988, - "bitrate_kbps": 7106 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #01 「同居生活開始!」 1080p HDTV x264 AAC.mkv", @@ -30907,15 +17729,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1330588612, - "modified_timestamp": "2024-04-04T01:45:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1389.994, - "bitrate_kbps": 7658 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #05 「恋の三角関係!忍び寄る影」 1080p HDTV x264 AAC.mkv", @@ -30925,15 +17739,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1002147458, - "modified_timestamp": "2024-04-04T01:45:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1389.994, - "bitrate_kbps": 5767 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #12 「最終回!運命の恋の結末!」 End 1080p HDTV x264 AAC.mkv", @@ -30943,15 +17749,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 878433623, - "modified_timestamp": "2024-04-04T01:45:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1375.04, - "bitrate_kbps": 5110 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #02 「真夜中に近づく心」 1080p HDTV x264 AAC.mkv", @@ -30961,15 +17759,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1014429299, - "modified_timestamp": "2024-04-04T01:45:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1390.037, - "bitrate_kbps": 5838 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #10 「恋心の結末!呪いを解くキス」 1080p HDTV x264 AAC.mkv", @@ -30979,15 +17769,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1275602209, - "modified_timestamp": "2024-04-04T01:45:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1389.988, - "bitrate_kbps": 7341 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #03 「二人きりでお泊り」 1080p HDTV x264 AAC.mkv", @@ -30997,15 +17779,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1095588352, - "modified_timestamp": "2024-04-04T01:45:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1390.037, - "bitrate_kbps": 6305 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/リビングの松永さん Complete 1080p HDTV x264 AAC/リビングの松永さん #06 「忘れられない、昔の恋」 1080p HDTV x264 AAC.mkv", @@ -31015,15 +17789,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1166103876, - "modified_timestamp": "2024-04-04T01:45:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1390.037, - "bitrate_kbps": 6711 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E06.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31035,15 +17801,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 787031222, - "modified_timestamp": "2023-01-13T13:02:14+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2697.248, - "bitrate_kbps": 2334 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31055,15 +17813,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 877036860, - "modified_timestamp": "2023-01-13T13:02:33+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2284.832, - "bitrate_kbps": 3070 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E07.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31075,15 +17825,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 934751058, - "modified_timestamp": "2023-01-13T13:02:27+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2653.088, - "bitrate_kbps": 2818 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E04.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31095,15 +17837,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1454577398, - "modified_timestamp": "2023-01-13T13:02:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2625.056, - "bitrate_kbps": 4432 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E02.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31115,15 +17849,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 754232402, - "modified_timestamp": "2023-01-13T13:02:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2386.976, - "bitrate_kbps": 2527 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E08.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31135,15 +17861,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 717856043, - "modified_timestamp": "2023-01-13T13:02:30+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2631.2, - "bitrate_kbps": 2182 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E05.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31155,15 +17873,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 881819612, - "modified_timestamp": "2023-01-13T13:02:35+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2626.976, - "bitrate_kbps": 2685 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E03.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31175,15 +17885,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1014507999, - "modified_timestamp": "2023-01-13T13:02:34+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2689.184, - "bitrate_kbps": 3018 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Makanai.Cooking.for.the.Maiko.House.2023.S01.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB/The.Makanai.Cooking.for.the.Maiko.House.2023.S01E09.1080p.NF.WEB-DL.DDP5.1.HDR.H265-PTerWEB.mkv", @@ -31195,15 +17897,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 725146256, - "modified_timestamp": "2023-01-13T13:02:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2787.104, - "bitrate_kbps": 2081 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E05.The.Past.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31215,15 +17909,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3008950250, - "modified_timestamp": "2024-04-11T09:03:24+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 2720.375, - "bitrate_kbps": 8848 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E04.The.Ghouls.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31235,15 +17921,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3327603416, - "modified_timestamp": "2024-04-11T09:03:20+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 2920.5, - "bitrate_kbps": 9115 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E08.The.Beginning.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31255,15 +17933,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4124109652, - "modified_timestamp": "2024-04-11T09:02:40+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 3746.5, - "bitrate_kbps": 8806 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E07.The.Radio.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31275,15 +17945,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4205339236, - "modified_timestamp": "2024-04-11T09:02:26+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 3663.375, - "bitrate_kbps": 9183 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E02.The.Target.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31295,15 +17957,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4512064841, - "modified_timestamp": "2024-04-11T09:03:25+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 3930.709, - "bitrate_kbps": 9183 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E01.The.End.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31315,15 +17969,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4980993607, - "modified_timestamp": "2024-04-11T09:03:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4497.5, - "bitrate_kbps": 8860 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E06.The.Trap.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31335,15 +17981,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4123450504, - "modified_timestamp": "2024-04-11T09:03:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3640.875, - "bitrate_kbps": 9060 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Fallout.S01.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Fallout.S01E03.The.Head.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -31355,15 +17993,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3984558390, - "modified_timestamp": "2024-04-11T09:03:22+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 3419.75, - "bitrate_kbps": 9321 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01E02.People.vs.Rozat.Sabich.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -31375,15 +18005,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3526415779, - "modified_timestamp": "2024-06-20T05:31:06+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2608.773, - "bitrate_kbps": 10814 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E08.Jupiter.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -31395,15 +18017,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3827582227, - "modified_timestamp": "2024-06-19T11:26:29+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2826.032, - "bitrate_kbps": 10835 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第一話 720p HDTV x264 AAC-DoA.mkv", @@ -31413,15 +18027,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1002556911, - "modified_timestamp": "2020-05-07T10:59:16+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3140.007, - "bitrate_kbps": 2554 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 最終話 End 720p HDTV x264 AAC-DoA.mkv", @@ -31431,15 +18037,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 891475009, - "modified_timestamp": "2020-05-07T10:59:16+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3129.993, - "bitrate_kbps": 2278 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第三話 720p HDTV x264 AAC-DoA.mkv", @@ -31449,15 +18047,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 887199879, - "modified_timestamp": "2020-05-07T10:59:20+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3000.0, - "bitrate_kbps": 2365 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第二話 720p HDTV x264 AAC-DoA.mkv", @@ -31467,15 +18057,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 962234652, - "modified_timestamp": "2020-05-07T10:59:22+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3000.0, - "bitrate_kbps": 2565 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW パレートの誤算~ケースワーカー殺人事件 Complete 720p HDTV x264 AAC-DoA/連続ドラマW パレートの誤算~ケースワーカー殺人事件 第四話 720p HDTV x264 AAC-DoA.mkv", @@ -31485,15 +18067,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 857916885, - "modified_timestamp": "2020-05-07T10:59:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3040.003, - "bitrate_kbps": 2257 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Study.Group.2025.S01E01.1080p.Friday.WEB-DL.H264.AAC-PTerWEB.mkv", @@ -31505,15 +18079,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2432370227, - "modified_timestamp": "2025-02-13T09:43:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2623.554, - "bitrate_kbps": 7417 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第一話 720p HDTV x264 AAC-DoA.mkv", @@ -31523,15 +18089,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1175701161, - "modified_timestamp": "2020-12-12T05:14:44+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3209.96, - "bitrate_kbps": 2930 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 最終話 720p HDTV x264 AAC-DoA.mkv", @@ -31541,15 +18099,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1266245617, - "modified_timestamp": "2020-12-12T05:14:48+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3300.053, - "bitrate_kbps": 3069 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第二話 720p HDTV x264 AAC-DoA.mkv", @@ -31559,15 +18109,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1106930805, - "modified_timestamp": "2020-12-12T05:14:47+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3059.994, - "bitrate_kbps": 2893 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW セイレーンの懺悔 Complete 720p HDTV x264 AAC-DoA/連続ドラマW セイレーンの懺悔 第三話 720p HDTV x264 AAC-DoA.mkv", @@ -31577,15 +18119,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1202607843, - "modified_timestamp": "2020-12-12T05:14:48+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2875.029, - "bitrate_kbps": 3346 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第5話 〈波乱の逃亡編〉ついに完結―! 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -31595,15 +18129,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 944693900, - "modified_timestamp": "2024-06-12T00:22:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2701.952, - "bitrate_kbps": 2797 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第09話 END 1080p KKTV WEB-DL H264 AAC.mkv", @@ -31613,15 +18139,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1393386275, - "modified_timestamp": "2024-06-24T12:08:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3455.106, - "bitrate_kbps": 3226 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E08.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31631,15 +18149,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1306406919, - "modified_timestamp": "2024-10-14T01:02:12+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2686.89, - "bitrate_kbps": 3889 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E06.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31649,15 +18159,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1321090977, - "modified_timestamp": "2024-10-14T01:00:50+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2704.064, - "bitrate_kbps": 3908 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E09.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31667,15 +18169,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1309551233, - "modified_timestamp": "2024-10-14T01:03:44+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2699.136, - "bitrate_kbps": 3881 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E07.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31685,15 +18179,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1317428982, - "modified_timestamp": "2024-10-14T01:01:15+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2694.357, - "bitrate_kbps": 3911 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E04.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31703,15 +18189,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1321387600, - "modified_timestamp": "2024-10-14T00:57:33+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2706.24, - "bitrate_kbps": 3906 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E05.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31721,15 +18199,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1334408812, - "modified_timestamp": "2024-10-14T00:59:08+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2741.077, - "bitrate_kbps": 3894 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E03.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31739,15 +18209,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1319046883, - "modified_timestamp": "2024-10-14T00:56:18+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2705.066, - "bitrate_kbps": 3900 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E02.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31757,15 +18219,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1322121990, - "modified_timestamp": "2024-10-14T00:55:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2695.018, - "bitrate_kbps": 3924 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E01.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31775,15 +18229,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1702553031, - "modified_timestamp": "2024-10-14T00:53:41+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3515.008, - "bitrate_kbps": 3874 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Tsuma.Shougakusei.ni.Naru.2022.WEB-DL.1080p.H265.AAC-HDCTV/Tsuma.Shougakusei.ni.Naru.E10.2022.WEB-DL.1080p.H265.AAC-HDCTV.mkv", @@ -31793,15 +18239,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1307752923, - "modified_timestamp": "2024-10-14T01:03:47+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2677.312, - "bitrate_kbps": 3907 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/A.Murder.At.The.End.Of.The.World.S01E02.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX/A.Murder.at.the.End.of.the.World.S01E02.The.Silver.Doe.1080p.DSNP.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -31813,15 +18251,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2880466043, - "modified_timestamp": "2023-11-20T13:24:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3781.486, - "bitrate_kbps": 6093 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.2024.S01E04.The.Eightfold.Fence.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -31833,15 +18263,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3006222744, - "modified_timestamp": "2024-03-13T12:20:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3380.384, - "bitrate_kbps": 7114 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Shogun.2024.S01E01.Anjin.1080p.DSNP.WEB-DL.DDP5.1.H.264-APEX.mkv", @@ -31853,15 +18275,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3698715953, - "modified_timestamp": "2024-03-05T08:04:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4195.296, - "bitrate_kbps": 7053 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E09.The.Last.Day.1.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31873,15 +18287,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4189468875, - "modified_timestamp": "2022-04-05T04:55:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1313.739, - "bitrate_kbps": 25511 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E06.The.Set.Up.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31893,15 +18299,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4149686129, - "modified_timestamp": "2022-04-05T04:59:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1305.771, - "bitrate_kbps": 25423 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E10.The.Last.Day.2.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31913,15 +18311,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4691263919, - "modified_timestamp": "2022-04-05T04:54:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1478.646, - "bitrate_kbps": 25381 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E04.Balancing.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31933,15 +18323,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4109214071, - "modified_timestamp": "2022-04-05T04:59:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1294.836, - "bitrate_kbps": 25388 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E07.Game.of.Boyles.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31953,15 +18335,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4223572117, - "modified_timestamp": "2022-04-05T04:57:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1309.526, - "bitrate_kbps": 25802 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E01.The.Good.Ones.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31973,15 +18347,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4127907925, - "modified_timestamp": "2022-04-05T03:03:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1309.684, - "bitrate_kbps": 25214 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E02.The.Lake.House.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -31993,15 +18359,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4137958003, - "modified_timestamp": "2022-04-05T04:57:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1293.92, - "bitrate_kbps": 25584 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E03.Blue.Flu.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -32013,15 +18371,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4068221450, - "modified_timestamp": "2022-04-05T05:00:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1294.794, - "bitrate_kbps": 25135 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E08.Renewal.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -32033,15 +18383,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4180355643, - "modified_timestamp": "2022-04-05T04:59:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1308.14, - "bitrate_kbps": 25565 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Brooklyn.Nine-Nine.S08.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI/Brooklyn.Nine-Nine.S08E05.PB.&.J.1080p.Blu-ray.Remux.AVC.DTS-HD.MA.5.1-SiCFoI.mkv", @@ -32053,15 +18395,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4094125462, - "modified_timestamp": "2022-04-05T04:57:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1279.531, - "bitrate_kbps": 25597 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 06 1280x720p.mkv", @@ -32071,15 +18405,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1512180967, - "modified_timestamp": "2020-10-02T16:25:52+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2643.64, - "bitrate_kbps": 4576 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 09 1280x720p.mkv", @@ -32089,15 +18415,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1589925099, - "modified_timestamp": "2020-10-02T16:25:40+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2779.096, - "bitrate_kbps": 4576 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 10 1280x720p.mkv", @@ -32107,15 +18425,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1512620158, - "modified_timestamp": "2020-10-02T16:25:46+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2643.76, - "bitrate_kbps": 4577 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 01-02 1280x720p.mkv", @@ -32125,15 +18435,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3410398208, - "modified_timestamp": "2020-10-02T16:25:49+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5961.16, - "bitrate_kbps": 4576 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 11 1280x720p.mkv", @@ -32143,15 +18445,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2401532716, - "modified_timestamp": "2020-10-02T16:25:50+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 4196.84, - "bitrate_kbps": 4577 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 05 1280x720p.mkv", @@ -32161,15 +18455,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1585534374, - "modified_timestamp": "2020-10-02T16:25:47+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2771.64, - "bitrate_kbps": 4576 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 08 1280x720p.mkv", @@ -32179,15 +18465,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1401850227, - "modified_timestamp": "2020-10-02T16:25:52+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2449.96, - "bitrate_kbps": 4577 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 03-04 1280x720p.mkv", @@ -32197,15 +18475,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3082770702, - "modified_timestamp": "2020-10-02T16:25:49+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 5391.0, - "bitrate_kbps": 4574 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/冰上恋人/Pride 07 1280x720p.mkv", @@ -32215,15 +18485,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1692215421, - "modified_timestamp": "2020-10-02T16:25:50+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2958.36, - "bitrate_kbps": 4576 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E02.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32235,15 +18497,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3211162364, - "modified_timestamp": "2023-11-30T20:05:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3306.88, - "bitrate_kbps": 7768 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E06.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32255,15 +18509,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3406179178, - "modified_timestamp": "2023-11-30T20:05:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3341.4, - "bitrate_kbps": 8155 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32275,15 +18521,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3191378256, - "modified_timestamp": "2023-11-30T20:05:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3349.0, - "bitrate_kbps": 7623 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E05.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32295,15 +18533,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3331484316, - "modified_timestamp": "2023-11-30T20:05:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3424.4, - "bitrate_kbps": 7782 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E07.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32315,15 +18545,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3643619631, - "modified_timestamp": "2023-11-30T20:05:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3567.56, - "bitrate_kbps": 8170 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E03.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32335,15 +18557,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3460057811, - "modified_timestamp": "2023-11-30T20:05:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3448.84, - "bitrate_kbps": 8026 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E04.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32355,15 +18569,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3254074519, - "modified_timestamp": "2023-11-30T20:05:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3362.12, - "bitrate_kbps": 7742 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Bodies.S01.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb/Bodies.S01E08.2023.1080p.NF.WEB-DL.x264.DDP5.1.Atmos-ADWeb.mkv", @@ -32375,15 +18581,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3673193647, - "modified_timestamp": "2023-11-30T20:05:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3710.76, - "bitrate_kbps": 7919 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.3 「最後のクリスマス」 720p HDTV x264 AAC-DoA.mkv", @@ -32393,15 +18591,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1155715177, - "modified_timestamp": "2020-11-01T14:28:12+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.968, - "bitrate_kbps": 3182 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.1 「夫の帰還」 720p HDTV x264 AAC-DoA.mkv", @@ -32411,15 +18601,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1202603685, - "modified_timestamp": "2020-11-01T14:28:31+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.874, - "bitrate_kbps": 3311 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.2 「妻の攻撃」 720p HDTV x264 AAC-DoA.mkv", @@ -32429,15 +18611,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1217608225, - "modified_timestamp": "2020-11-01T14:28:29+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.935, - "bitrate_kbps": 3353 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.4 「妻の覚醒」 720p HDTV x264 AAC-DoA.mkv", @@ -32447,15 +18621,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1093211149, - "modified_timestamp": "2020-11-01T14:28:31+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.935, - "bitrate_kbps": 3010 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.5 「夫の逆襲」 720p HDTV x264 AAC-DoA.mkv", @@ -32465,15 +18631,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1160986460, - "modified_timestamp": "2020-11-01T14:27:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.868, - "bitrate_kbps": 3197 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.6 「魔性の復讐」 720p HDTV x264 AAC-DoA.mkv", @@ -32483,15 +18641,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1220294160, - "modified_timestamp": "2020-11-01T14:28:26+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2904.938, - "bitrate_kbps": 3360 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.8 「新たなる希望」 End 720p HDTV x264 AAC-DoA.mkv", @@ -32501,15 +18651,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1275486148, - "modified_timestamp": "2020-11-01T14:28:23+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2889.887, - "bitrate_kbps": 3530 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/ホリデイラブ Complete 720p HDTV x264 AAC-DoA/ホリデイラブ ep.7 「夫婦間恋愛」 720p HDTV x264 AAC-DoA.mkv", @@ -32519,15 +18661,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1192670590, - "modified_timestamp": "2020-11-01T14:27:46+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2905.024, - "bitrate_kbps": 3284 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第5回 「パパのいない夜」 1080p HDTV x264 AAC.mkv", @@ -32537,15 +18671,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2887705525, - "modified_timestamp": "2022-07-05T13:34:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.288, - "bitrate_kbps": 7856 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第7回 「パパの深い海の底」 1080p HDTV x264 AAC.mkv", @@ -32555,15 +18681,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2739728779, - "modified_timestamp": "2022-07-05T13:34:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.608, - "bitrate_kbps": 7453 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第6回 「この優しい世界」 1080p HDTV x264 AAC.mkv", @@ -32573,15 +18691,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2726705349, - "modified_timestamp": "2022-07-05T13:34:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.138, - "bitrate_kbps": 7419 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第3回 「空飛ぶ自転車」 1080p HDTV x264 AAC.mkv", @@ -32591,15 +18701,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2780082641, - "modified_timestamp": "2022-07-05T13:34:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.437, - "bitrate_kbps": 7563 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第2回 「聞こえない音楽会」 1080p HDTV x264 AAC.mkv", @@ -32609,15 +18711,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2661842717, - "modified_timestamp": "2022-07-05T13:34:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.27, - "bitrate_kbps": 7242 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第8回 「紙吹雪の中で」 End 1080p HDTV x264 AAC.mkv", @@ -32627,15 +18721,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2973994281, - "modified_timestamp": "2022-07-05T13:34:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.01, - "bitrate_kbps": 8092 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第1回 「ケバブサンドの秘密」 1080p HDTV x264 AAC.mkv", @@ -32645,15 +18731,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2747780307, - "modified_timestamp": "2022-07-05T13:21:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.07, - "bitrate_kbps": 7476 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/しずかちゃんとパパ Complete 1080p HDTV x264 AAC/しずかちゃんとパパ 第4回 「涙のけんちん汁」 1080p HDTV x264 AAC.mkv", @@ -32663,15 +18741,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2874120527, - "modified_timestamp": "2022-07-05T13:34:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2940.138, - "bitrate_kbps": 7820 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Play.Dirty.2025.2160p.AMZN.WEB-DL.DDP.5.1.H.265-CHDWEB.mkv", @@ -32681,15 +18751,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 14677616602, - "modified_timestamp": "2025-10-05T05:25:49+00:00", - "resolution": "3840x1600", - "codec": "hevc", - "duration_seconds": 7652.544, - "bitrate_kbps": 15344 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/RoOT 第07話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -32699,15 +18761,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 559704238, - "modified_timestamp": "2024-05-21T15:08:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.055, - "bitrate_kbps": 3209 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB/Logically.Impossible.Detective.Ryoko.Kamizuru.is.on.the.Case.2023.E03.1080p.KKTV.WEB-DL.x264.AAC-PTerWEB.mkv", @@ -32717,15 +18771,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1096745813, - "modified_timestamp": "2023-06-27T02:19:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2744.088, - "bitrate_kbps": 3197 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Reacher.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Reacher.S02E08.Fly.Boy.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -32737,15 +18783,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2612329133, - "modified_timestamp": "2024-01-20T09:54:35+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2537.16, - "bitrate_kbps": 8237 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第2話 決意の脱獄計画…全ては妻の為に 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -32755,15 +18793,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1126149432, - "modified_timestamp": "2024-05-16T12:24:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3265.216, - "bitrate_kbps": 2759 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Hot.Spot.S01.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb/The.Hot.Spot.S01E01.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", @@ -32775,15 +18805,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2907208719, - "modified_timestamp": "2025-03-13T11:54:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2755.072, - "bitrate_kbps": 8441 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Hot.Spot.S01.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb/The.Hot.Spot.S01E02.2025.V2.1080p.NF.WEB-DL.x264.AAC-ADWeb.mkv", @@ -32795,15 +18817,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2774117975, - "modified_timestamp": "2025-03-13T11:47:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2750.251, - "bitrate_kbps": 8069 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E03.1080p.炸鱼薯条字幕组.双语字幕.mp4", @@ -32815,15 +18829,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1563199870, - "modified_timestamp": "2024-11-20T13:43:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3486.336, - "bitrate_kbps": 3587 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E06.1080p.炸鱼薯条字幕组.双语字幕.mp4", @@ -32835,15 +18841,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1488603102, - "modified_timestamp": "2024-11-20T13:41:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3514.28, - "bitrate_kbps": 3388 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E04.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", @@ -32855,15 +18853,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1533853687, - "modified_timestamp": "2024-11-20T13:39:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3239.488, - "bitrate_kbps": 3787 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E02.1080p.炸鱼薯条字幕组.双语字幕.V2.mp4", @@ -32875,15 +18865,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1645464859, - "modified_timestamp": "2024-11-20T13:42:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3475.2, - "bitrate_kbps": 3787 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E05.1080p.炸鱼薯条字幕组.双语字幕.mp4", @@ -32895,15 +18877,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1467391825, - "modified_timestamp": "2024-11-20T13:39:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3465.536, - "bitrate_kbps": 3387 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Ludwig.S01/谜探路德维希.Ludwig.S01E01.1080p.炸鱼薯条字幕组.双语字幕.mp4", @@ -32915,15 +18889,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1579948820, - "modified_timestamp": "2024-11-20T13:38:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3426.32, - "bitrate_kbps": 3688 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E01.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -32935,15 +18901,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1269223817, - "modified_timestamp": "2019-08-25T14:08:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2909.6, - "bitrate_kbps": 3489 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E03.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -32955,15 +18913,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1666837476, - "modified_timestamp": "2019-08-25T14:10:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3638.048, - "bitrate_kbps": 3665 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -32975,15 +18925,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1476393429, - "modified_timestamp": "2019-08-25T14:09:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2803.232, - "bitrate_kbps": 4213 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E05.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -32995,15 +18937,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2025084845, - "modified_timestamp": "2019-08-25T14:11:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4312.736, - "bitrate_kbps": 3756 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E04.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -33015,15 +18949,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1239752823, - "modified_timestamp": "2019-08-25T14:08:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3067.808, - "bitrate_kbps": 3232 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E07.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -33035,15 +18961,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1642812532, - "modified_timestamp": "2019-08-25T14:10:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3507.872, - "bitrate_kbps": 3746 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E06.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -33055,15 +18973,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1547913423, - "modified_timestamp": "2019-08-25T14:09:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3532.064, - "bitrate_kbps": 3505 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E09.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -33075,15 +18985,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2090491946, - "modified_timestamp": "2019-08-25T14:11:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4424.864, - "bitrate_kbps": 3779 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Mindhunter.S02.1080p.NF.WEB-DL.DDP5.1.x264-MZABI/Mindhunter.S02E08.1080p.NF.WEB-DL.DDP5.1.x264-MZABI.mkv", @@ -33095,15 +18997,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1287610186, - "modified_timestamp": "2019-08-25T14:09:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3191.84, - "bitrate_kbps": 3227 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E03.A.Place.of.Safety.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33115,15 +19009,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4290081450, - "modified_timestamp": "2022-01-05T12:36:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3450.592, - "bitrate_kbps": 9946 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E08.The.Eye.of.the.World.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33135,15 +19021,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3935646572, - "modified_timestamp": "2022-01-05T13:25:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3402.656, - "bitrate_kbps": 9253 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E01.Leavetaking.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33155,15 +19033,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3782282876, - "modified_timestamp": "2022-01-05T12:22:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3244.192, - "bitrate_kbps": 9326 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E04.The.Dragon.Reborn.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33175,15 +19045,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4631750889, - "modified_timestamp": "2022-01-05T12:45:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3701.024, - "bitrate_kbps": 10011 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E07.The.Dark.Along.the.Ways.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33195,15 +19057,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4181300958, - "modified_timestamp": "2022-01-05T13:24:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3572.928, - "bitrate_kbps": 9362 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E05.Blood.Calls.Blood.1080p.AMZN.WEB-DL.DDP5.1.H.265-NTb.mkv", @@ -33215,15 +19069,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4415934693, - "modified_timestamp": "2022-01-05T13:25:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3620.0, - "bitrate_kbps": 9758 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E02.Shadows.Waiting.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33235,15 +19081,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4189033221, - "modified_timestamp": "2022-01-05T12:29:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3429.728, - "bitrate_kbps": 9771 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Wheel.of.Time.S01E06.The.Flame.of.Tar.Valon.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33255,15 +19093,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4584090887, - "modified_timestamp": "2022-01-05T13:24:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3732.0, - "bitrate_kbps": 9826 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E01.Are.You.Happy.in.Your.Life.1080p.ATVP.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33275,15 +19105,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3750002271, - "modified_timestamp": "2024-06-08T05:43:56+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2775.648, - "bitrate_kbps": 10808 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/RoOT 第04話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -33293,15 +19115,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 561895379, - "modified_timestamp": "2024-05-21T14:58:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.055, - "bitrate_kbps": 3222 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E10.Episode.10.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33313,15 +19127,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2580855636, - "modified_timestamp": "2024-06-14T14:48:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3486.368, - "bitrate_kbps": 5922 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E02.Episode.2.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33333,15 +19139,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1739127140, - "modified_timestamp": "2024-06-14T14:48:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2701.216, - "bitrate_kbps": 5150 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E01.Episode.1.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33353,15 +19151,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2256231945, - "modified_timestamp": "2024-06-14T13:30:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3518.496, - "bitrate_kbps": 5129 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E09.Episode.9.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33373,15 +19163,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1729021720, - "modified_timestamp": "2024-06-14T14:48:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2693.408, - "bitrate_kbps": 5135 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E04.Episode.4.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33393,15 +19175,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1915022254, - "modified_timestamp": "2024-06-14T14:48:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2708.512, - "bitrate_kbps": 5656 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E07.Episode.7.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33413,15 +19187,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1736293283, - "modified_timestamp": "2024-06-14T14:48:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2708.256, - "bitrate_kbps": 5128 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E03.Episode.3.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33433,15 +19199,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1734966265, - "modified_timestamp": "2024-06-14T14:48:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2708.512, - "bitrate_kbps": 5124 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E05.Episode.5.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33453,15 +19211,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1735297786, - "modified_timestamp": "2024-06-14T14:47:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2708.384, - "bitrate_kbps": 5125 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E08.Episode.8.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33473,15 +19223,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1819305871, - "modified_timestamp": "2024-06-14T14:48:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2693.536, - "bitrate_kbps": 5403 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Extremely.Inappropriate.S01.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB/Extremely.Inappropriate.S01E06.Episode.6.1080p.NF.WEB-DL.DDP.2.0.H.264-CHDWEB.mkv", @@ -33493,15 +19235,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1732567825, - "modified_timestamp": "2024-06-14T14:48:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2701.856, - "bitrate_kbps": 5130 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Hijack.2023.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Hijack.2023.S01E07.Brace.Brace.Brace.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -33513,15 +19247,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4221492270, - "modified_timestamp": "2023-08-02T15:01:27+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3125.927, - "bitrate_kbps": 10803 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E05.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33533,15 +19259,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1483153837, - "modified_timestamp": "2022-12-25T16:46:35+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2619.104, - "bitrate_kbps": 4530 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E01.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33553,15 +19271,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1935224066, - "modified_timestamp": "2022-12-25T16:50:05+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 3434.752, - "bitrate_kbps": 4507 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E09.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33573,15 +19283,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1381558884, - "modified_timestamp": "2022-12-25T16:46:49+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2416.512, - "bitrate_kbps": 4573 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E06.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33593,15 +19295,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1376027448, - "modified_timestamp": "2022-12-25T16:46:36+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2421.44, - "bitrate_kbps": 4546 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E02.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33613,15 +19307,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1829920149, - "modified_timestamp": "2022-12-25T16:50:02+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 3202.208, - "bitrate_kbps": 4571 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E04.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33633,15 +19319,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1587947333, - "modified_timestamp": "2022-12-25T16:46:43+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2795.552, - "bitrate_kbps": 4544 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E08.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33653,15 +19331,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1610712044, - "modified_timestamp": "2022-12-25T16:46:16+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2801.346, - "bitrate_kbps": 4599 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E03.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33673,15 +19343,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1957847944, - "modified_timestamp": "2022-12-25T16:50:06+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 3399.744, - "bitrate_kbps": 4607 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/人生切割术S01.Severance.2022.1080p.WEB-DL.x265.AC3£cXcY@FRDS/Severance.S01E07.2022.1080p.WEB-DL.x265.10bit.AC3£cXcY@FRDS.mkv", @@ -33693,15 +19355,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1742769816, - "modified_timestamp": "2022-12-25T16:46:53+00:00", - "resolution": "1918x802", - "codec": "hevc", - "duration_seconds": 2995.104, - "bitrate_kbps": 4654 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E10.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33713,15 +19367,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1591726600, - "modified_timestamp": "2024-09-01T06:14:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2193.692, - "bitrate_kbps": 5804 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E08.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33733,15 +19379,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1851017335, - "modified_timestamp": "2024-09-01T06:12:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2129.795, - "bitrate_kbps": 6952 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E04.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33753,15 +19391,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1448620998, - "modified_timestamp": "2024-09-01T05:58:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2009.049, - "bitrate_kbps": 5768 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E07.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33773,15 +19403,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1359042729, - "modified_timestamp": "2024-09-01T06:07:59+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1840.756, - "bitrate_kbps": 5906 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E03.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33793,15 +19415,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1425317226, - "modified_timestamp": "2024-09-01T05:54:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1978.894, - "bitrate_kbps": 5762 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E09.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33813,15 +19427,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1285494581, - "modified_timestamp": "2024-09-01T06:14:06+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1792.666, - "bitrate_kbps": 5736 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33833,15 +19439,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1409105484, - "modified_timestamp": "2024-09-01T05:45:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1963.921, - "bitrate_kbps": 5739 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E05.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33853,15 +19451,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1188830350, - "modified_timestamp": "2024-09-01T06:00:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1688.103, - "bitrate_kbps": 5633 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E02.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33873,15 +19463,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1691450179, - "modified_timestamp": "2024-09-01T05:52:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1956.914, - "bitrate_kbps": 6914 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Chicken.Nugget.S01.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX/Chicken.Nugget.S01E06.1080p.NF.WEB-DL.DUAL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -33893,15 +19475,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1199277167, - "modified_timestamp": "2024-09-01T06:04:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1697.029, - "bitrate_kbps": 5653 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP5 1080p HDTV x264 AAC.mkv", @@ -33911,15 +19485,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4531772560, - "modified_timestamp": "2023-05-13T02:32:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2669.9, - "bitrate_kbps": 13578 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP4 1080p HDTV x264 AAC.mkv", @@ -33929,15 +19495,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4579572433, - "modified_timestamp": "2023-05-13T02:32:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2669.934, - "bitrate_kbps": 13721 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/オリバーな犬、(Gosh!!)このヤロウ シーズン2 Complete 1080p HDTV x264 AAC/オリバーな犬、(Gosh!!)このヤロウ シーズン2 EP6 End 1080p HDTV x264 AAC.mkv", @@ -33947,15 +19505,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4069431251, - "modified_timestamp": "2023-05-13T02:32:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2669.934, - "bitrate_kbps": 12193 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB/A.House.of.Dynamite.2025.2160p.NF.WEB-DL.DDP5.1.Atmos.H.265-HHWEB.mkv", @@ -33965,15 +19515,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 10235602898, - "modified_timestamp": "2025-10-27T11:08:35+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 6904.128, - "bitrate_kbps": 11860 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shogun.S01E07.2024.2160p.DSNP.WEB-DL.DDP5.1.DV.HDR.H.265-HHWEB.mkv", @@ -33985,15 +19527,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6090068390, - "modified_timestamp": "2024-04-03T11:47:38+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3270.592, - "bitrate_kbps": 14896 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Adolescence.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Adolescence.S01E04.Episode.4.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -34005,15 +19539,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2544317505, - "modified_timestamp": "2025-04-15T13:59:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3612.72, - "bitrate_kbps": 5634 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Adolescence.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Adolescence.S01E02.Episode.2.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -34025,15 +19551,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2115857272, - "modified_timestamp": "2025-04-15T13:51:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3085.96, - "bitrate_kbps": 5485 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Adolescence.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Adolescence.S01E03.Episode.3.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -34045,15 +19563,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3259215595, - "modified_timestamp": "2025-04-15T13:57:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3179.52, - "bitrate_kbps": 8200 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Adolescence.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/Adolescence.S01E01.Episode.1.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -34065,15 +19575,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2724577244, - "modified_timestamp": "2025-04-15T13:48:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3906.44, - "bitrate_kbps": 5579 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第10話 「恋は大デジャブ」 (1440x1080i x264-AAC)-DoA.mkv", @@ -34083,15 +19585,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 858969439, - "modified_timestamp": "2024-01-05T13:03:30+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1374.74, - "bitrate_kbps": 4998 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E04.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34103,15 +19597,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1276786102, - "modified_timestamp": "2023-11-27T12:17:46+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3607.822517, - "bitrate_kbps": 2831 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E08.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34123,15 +19609,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1087307589, - "modified_timestamp": "2023-11-27T12:17:47+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3588.805374, - "bitrate_kbps": 2423 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E09.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34143,15 +19621,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1238491040, - "modified_timestamp": "2023-11-27T12:17:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3608.844195, - "bitrate_kbps": 2745 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34163,15 +19633,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1200616249, - "modified_timestamp": "2023-11-27T12:17:46+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3625.864422, - "bitrate_kbps": 2649 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E05.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34183,15 +19645,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1241635801, - "modified_timestamp": "2023-11-27T12:17:46+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3596.816259, - "bitrate_kbps": 2761 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E10.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34203,15 +19657,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1222290198, - "modified_timestamp": "2023-11-27T12:17:47+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 4092.328549, - "bitrate_kbps": 2389 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E03.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34223,15 +19669,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1330309052, - "modified_timestamp": "2023-11-27T12:17:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3597.814717, - "bitrate_kbps": 2958 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E07.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34243,15 +19681,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1099610454, - "modified_timestamp": "2023-11-27T12:17:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3604.827143, - "bitrate_kbps": 2440 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E02.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34263,15 +19693,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1245732829, - "modified_timestamp": "2023-11-27T12:17:48+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3674.904966, - "bitrate_kbps": 2711 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/恶人传记.Evillive.S01.2023.2160p.WEB-DL.H265.DDP2.0-OurTV/恶人传记.Evillive.S01E06.2023.2160p.WEB-DL.H265.DDP2.0-OurTV.mp4", @@ -34283,15 +19705,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1249465549, - "modified_timestamp": "2023-11-27T12:17:45+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3601.808549, - "bitrate_kbps": 2775 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/花咲舞が黙ってない 2024 第01話 1080p friDay WEB-DL H264 AAC.mkv", @@ -34301,15 +19715,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2659788720, - "modified_timestamp": "2024-05-01T08:55:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2700.964, - "bitrate_kbps": 7878 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第08話 「サマータイムパトロール・ブルース」 (1440x1080i x264-AAC)-DoA.mkv", @@ -34319,15 +19725,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 814549214, - "modified_timestamp": "2024-01-05T12:45:32+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.721, - "bitrate_kbps": 4688 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Boys.S02.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/The.Boys.S02E08.What.I.Know.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -34339,15 +19737,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4338089954, - "modified_timestamp": "2020-10-09T14:05:58+00:00", - "resolution": "1920x800", - "codec": "h264", - "duration_seconds": 4046.304, - "bitrate_kbps": 8576 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E04.The.Corridor.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -34359,15 +19749,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4880916307, - "modified_timestamp": "2024-06-08T05:52:10+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3589.336, - "bitrate_kbps": 10878 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E04.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34379,15 +19761,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6325636313, - "modified_timestamp": "2023-01-02T05:45:24+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2835.616, - "bitrate_kbps": 17846 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E02.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34399,15 +19773,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7023556318, - "modified_timestamp": "2023-01-02T05:26:18+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3095.872, - "bitrate_kbps": 18149 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E08.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34419,15 +19785,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7360835322, - "modified_timestamp": "2023-01-02T05:45:32+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3274.048, - "bitrate_kbps": 17985 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E05.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34439,15 +19797,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6563737966, - "modified_timestamp": "2023-01-02T05:45:25+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2917.696, - "bitrate_kbps": 17997 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E03.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34459,15 +19809,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 7159939525, - "modified_timestamp": "2023-01-02T05:45:24+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3007.808, - "bitrate_kbps": 19043 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E06.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34479,15 +19821,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6817162695, - "modified_timestamp": "2023-01-02T05:45:28+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3109.888, - "bitrate_kbps": 17536 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E07.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34499,15 +19833,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4101393551, - "modified_timestamp": "2023-01-02T05:45:29+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2991.744, - "bitrate_kbps": 10967 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Glory.S01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC/The.Glory.S01E01.2160p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-XEBEC.mkv", @@ -34519,15 +19845,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6588542114, - "modified_timestamp": "2023-01-02T05:14:14+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2837.632, - "bitrate_kbps": 18574 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/RoOT 第01話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -34537,15 +19855,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 559178680, - "modified_timestamp": "2024-04-21T12:09:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.055, - "bitrate_kbps": 3206 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第06話 「バック・トゥ・ザ・エイティーズ」 (1440x1080i x264-AAC)-DoA.mkv", @@ -34555,15 +19865,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 988219416, - "modified_timestamp": "2024-01-05T12:28:11+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.721, - "bitrate_kbps": 5688 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第01話 「アバウト・タイムパトロール」 (1440x1080i x264-AAC)-DoA.mkv", @@ -34573,15 +19875,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 838799205, - "modified_timestamp": "2024-01-05T11:53:42+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.721, - "bitrate_kbps": 4828 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第7話 忍び寄る危機!!裏切り者はすぐ側に― 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -34591,15 +19885,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 951130130, - "modified_timestamp": "2024-06-11T23:50:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2720.0, - "bitrate_kbps": 2797 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34609,15 +19895,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1555043047, - "modified_timestamp": "2022-05-09T15:09:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8638 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34627,15 +19905,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1346420287, - "modified_timestamp": "2022-05-09T15:09:01+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 7479 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34645,15 +19915,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1514787592, - "modified_timestamp": "2022-05-09T14:34:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8415 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34663,15 +19925,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1512331240, - "modified_timestamp": "2022-05-09T15:09:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8401 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34681,15 +19935,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1260961242, - "modified_timestamp": "2022-05-09T15:09:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 7005 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34699,15 +19945,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1510428587, - "modified_timestamp": "2022-05-09T14:35:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8391 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34717,15 +19955,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1442049185, - "modified_timestamp": "2022-05-09T15:08:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8011 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34735,15 +19965,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1251735288, - "modified_timestamp": "2022-05-09T15:09:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 6953 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34753,15 +19975,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1253974199, - "modified_timestamp": "2022-05-09T15:09:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 6966 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[MagicStar] Boku no Neechan [WEBDL] [1080p] [AMZN] [JPN_SUB]/Boku.no.Neechan.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -34771,15 +19985,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1585362421, - "modified_timestamp": "2022-05-09T14:32:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8807 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E05.The.Marionette.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34791,15 +19997,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2171499821, - "modified_timestamp": "2023-03-24T12:40:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3137.632, - "bitrate_kbps": 5536 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E01.The.Call.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34811,15 +20009,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2287833445, - "modified_timestamp": "2023-03-24T12:40:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3301.792, - "bitrate_kbps": 5543 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E10.Fathers.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34831,15 +20021,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1856354575, - "modified_timestamp": "2023-03-24T12:40:07+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2709.184, - "bitrate_kbps": 5481 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E09.The.Devil.We.Know.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34851,15 +20033,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1857621660, - "modified_timestamp": "2023-03-24T12:39:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2709.184, - "bitrate_kbps": 5485 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E07.Best.Served.Cold.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34871,15 +20045,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1886749467, - "modified_timestamp": "2023-03-24T12:40:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2753.248, - "bitrate_kbps": 5482 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E06.Fathoms.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34891,15 +20057,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2059630677, - "modified_timestamp": "2023-03-24T12:40:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2975.456, - "bitrate_kbps": 5537 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E04.Eyes.Only.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34911,15 +20069,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1986031311, - "modified_timestamp": "2023-03-24T12:40:16+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2889.376, - "bitrate_kbps": 5498 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E02.Redial.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34931,15 +20081,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1987186752, - "modified_timestamp": "2023-03-24T12:40:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2895.392, - "bitrate_kbps": 5490 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E03.The.Zookeeper.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34951,15 +20093,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2356409421, - "modified_timestamp": "2023-03-24T12:39:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3369.856, - "bitrate_kbps": 5594 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Night.Agent.S01.REPACK.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM/The.Night.Agent.S01E08.Redux.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-WDYM.mkv", @@ -34971,15 +20105,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1869549578, - "modified_timestamp": "2023-03-24T12:40:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2735.232, - "bitrate_kbps": 5468 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB/City.Hunter.2024.1080p.NF.WEB-DL.DDP5.1.Atmos.H264-HHWEB.mkv", @@ -34989,15 +20115,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4841776012, - "modified_timestamp": "2024-04-25T23:28:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 6243.104, - "bitrate_kbps": 6204 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E03.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -35007,15 +20125,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 8743210555, - "modified_timestamp": "2023-01-15T10:22:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3076.95, - "bitrate_kbps": 22732 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E02.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -35025,15 +20135,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 8838656588, - "modified_timestamp": "2023-01-15T10:22:21+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3126.832, - "bitrate_kbps": 22613 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E05.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -35043,15 +20145,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 8814376579, - "modified_timestamp": "2023-01-15T10:22:20+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3114.737, - "bitrate_kbps": 22639 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E01.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -35061,15 +20155,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 8689867126, - "modified_timestamp": "2023-01-15T10:22:20+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3022.562, - "bitrate_kbps": 23000 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/The.Green.Planet.E04.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.mkv", @@ -35079,15 +20165,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 8703127990, - "modified_timestamp": "2023-01-15T10:22:20+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3128.084, - "bitrate_kbps": 22258 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi/Sample/The.Green.Planet.2022.2160p.BluRay.x265.10bit.Atmos.TrueHD7.1-WiKi.Sample.mkv", @@ -35097,15 +20175,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 183421336, - "modified_timestamp": "2023-01-15T10:02:55+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 60.811, - "bitrate_kbps": 24130 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/RoOT 第02話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -35115,15 +20185,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 560024057, - "modified_timestamp": "2024-04-21T13:18:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.124, - "bitrate_kbps": 3211 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E07.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35133,15 +20195,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1589489724, - "modified_timestamp": "2025-03-07T18:50:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 8830 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E01.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35151,15 +20205,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1716860353, - "modified_timestamp": "2025-03-07T18:50:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9537 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E10.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35169,15 +20215,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1737105112, - "modified_timestamp": "2025-03-07T18:50:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9650 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E06.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35187,15 +20225,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1785591984, - "modified_timestamp": "2025-03-07T18:50:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9919 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E09.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35205,15 +20235,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1760136845, - "modified_timestamp": "2025-03-07T18:50:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9778 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E03.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35223,15 +20245,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1714838200, - "modified_timestamp": "2025-03-07T18:50:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9526 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E05.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35241,15 +20255,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1761336710, - "modified_timestamp": "2025-03-07T18:50:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9784 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E08.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35259,15 +20265,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1779377228, - "modified_timestamp": "2025-03-07T18:50:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9885 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E02.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35277,15 +20275,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1688525362, - "modified_timestamp": "2025-03-07T18:50:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9380 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shitsuren.Meshi.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV/Shitsuren.Meshi.E04.2022.Amazon.WEB-DL.1080p.H264.DDP-HDCTV.mkv", @@ -35295,249 +20285,137 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1668648650, - "modified_timestamp": "2025-03-07T18:50:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1440.032, - "bitrate_kbps": 9270 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第08話 「私の過去、すべてお話します」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1683095230, - "modified_timestamp": "2018-11-11T06:46:03+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.9622, - "bitrate_kbps": 4869 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第07話 「死ぬまで二度と笑いません…」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1880941553, - "modified_timestamp": "2018-11-11T06:46:38+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.928833, - "bitrate_kbps": 5442 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第05話 「全部脱いで!…承知しました」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1858215224, - "modified_timestamp": "2018-11-11T06:46:35+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.9622, - "bitrate_kbps": 5376 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第06話 「王の監禁」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1703748169, - "modified_timestamp": "2018-11-11T06:46:42+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.928833, - "bitrate_kbps": 4929 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第09話 「最終章の始まり!一筋の涙…炎の中で私を死なせて」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2255691508, - "modified_timestamp": "2018-11-11T06:46:28+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3484.8814, - "bitrate_kbps": 5178 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第10話 「息子よ、夫よ、お願い…私も天国に連れて行って!」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2236314757, - "modified_timestamp": "2018-11-11T06:46:44+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3469.833033, - "bitrate_kbps": 5156 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4", "filename": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!! (1440x1080i -)", + "title": "【ドラマ番宣】 家政婦のミタ が見たくなる! 放送直前!みどころ大公開SP!!", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3039803586, - "modified_timestamp": "2018-11-11T06:46:39+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2594.725466, - "bitrate_kbps": 9372 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i -)", + "title": "【ドラマ】 さよなら 家政婦のミタ 特別版 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1999739941, - "modified_timestamp": "2018-11-11T06:46:42+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2759.890466, - "bitrate_kbps": 5796 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第02話 「僕を裏切ったアイツを殺して」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1712540251, - "modified_timestamp": "2018-11-11T06:46:43+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.9622, - "bitrate_kbps": 4954 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第03話 「母を殺した父の正体を暴いて」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1778182593, - "modified_timestamp": "2018-11-11T06:46:43+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.9622, - "bitrate_kbps": 5144 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第11話(終) 「最終回への序章…三田灯が亡き最愛の夫と息子に向き合う新撮場面公開!」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2301290747, - "modified_timestamp": "2018-11-11T06:46:43+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3414.778033, - "bitrate_kbps": 5391 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第04話 「あなたの愛娘を誘拐しました」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1754440789, - "modified_timestamp": "2018-11-11T06:46:18+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2764.9622, - "bitrate_kbps": 5076 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/家政婦のミタ 全11話+放送直前+特別版/【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4", "filename": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i x264-AAC).mp4", "category": "series", - "title": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」 (1440x1080i -)", + "title": "【ドラマ】 家政婦のミタ 第01話 「崩壊寸前の家庭にやって来た笑顔を忘れた氷の女…」", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2305264565, - "modified_timestamp": "2018-11-11T06:46:41+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 3429.8264, - "bitrate_kbps": 5376 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E10.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35549,15 +20427,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3130798374, - "modified_timestamp": "2026-01-19T14:04:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4615.232, - "bitrate_kbps": 5426 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E07.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35569,15 +20439,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3957671289, - "modified_timestamp": "2026-01-19T14:02:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5816.0, - "bitrate_kbps": 5443 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E01.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35589,15 +20451,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2822196728, - "modified_timestamp": "2026-01-19T13:59:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4195.52, - "bitrate_kbps": 5381 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E11.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35609,15 +20463,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3490320683, - "modified_timestamp": "2026-01-19T14:04:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5112.941, - "bitrate_kbps": 5461 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E06.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35629,15 +20475,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2693606186, - "modified_timestamp": "2026-01-19T14:02:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4005.44, - "bitrate_kbps": 5379 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E12.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35649,15 +20487,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3030000163, - "modified_timestamp": "2026-01-19T14:05:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4453.992, - "bitrate_kbps": 5442 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E09.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35669,15 +20499,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3432030037, - "modified_timestamp": "2026-01-19T14:03:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5039.168, - "bitrate_kbps": 5448 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E03.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35689,15 +20511,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3302891534, - "modified_timestamp": "2026-01-19T14:00:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4864.832, - "bitrate_kbps": 5431 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E05.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35709,15 +20523,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3223917950, - "modified_timestamp": "2026-01-19T14:01:48+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4764.608, - "bitrate_kbps": 5413 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E13.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35729,15 +20535,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2495981568, - "modified_timestamp": "2026-01-19T14:05:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3732.032, - "bitrate_kbps": 5350 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E08.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35749,15 +20547,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2999296897, - "modified_timestamp": "2026-01-19T14:03:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4437.056, - "bitrate_kbps": 5407 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35769,15 +20559,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3340148084, - "modified_timestamp": "2026-01-19T14:00:00+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4925.504, - "bitrate_kbps": 5425 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV/[黑白厨师:料理阶级战争].Culinary.Class.Wars.S02E04.2025.1080p.NF.WEB-DL.x264.DDP.5.1-CMCTV.mkv", @@ -35789,15 +20571,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3865091945, - "modified_timestamp": "2026-01-19T14:01:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 5665.088, - "bitrate_kbps": 5458 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35809,15 +20583,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3565135331, - "modified_timestamp": "2025-11-26T11:13:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3532.736, - "bitrate_kbps": 8073 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E02.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35829,15 +20595,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3597448965, - "modified_timestamp": "2025-11-26T11:16:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3072.704, - "bitrate_kbps": 9366 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E03.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35849,15 +20607,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3171041406, - "modified_timestamp": "2025-11-26T11:18:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2944.064, - "bitrate_kbps": 8616 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E04.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35869,15 +20619,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3224885694, - "modified_timestamp": "2025-11-26T11:20:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2924.917, - "bitrate_kbps": 8820 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E05.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35889,15 +20631,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2891769115, - "modified_timestamp": "2025-11-26T11:21:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2853.824, - "bitrate_kbps": 8106 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Last.Samurai.Standing.S01.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB/Last.Samurai.Standing.S01E06.2025.1080p.NF.WEB-DL.DDP5.1.H264-HHWEB.mkv", @@ -35909,15 +20643,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3364108555, - "modified_timestamp": "2025-11-26T11:22:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3227.84, - "bitrate_kbps": 8337 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E07.Episode.7.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -35929,15 +20655,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4869006500, - "modified_timestamp": "2023-12-25T13:46:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2557.152, - "bitrate_kbps": 15232 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E03.Episode.3.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -35949,15 +20667,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4770743559, - "modified_timestamp": "2023-12-25T13:46:19+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2532.448, - "bitrate_kbps": 15070 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E02.Episode.2.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -35969,15 +20679,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4686373450, - "modified_timestamp": "2023-12-25T12:27:03+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2472.704, - "bitrate_kbps": 15161 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E06.Episode.6.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -35989,15 +20691,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4760025436, - "modified_timestamp": "2023-12-25T13:46:30+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2483.872, - "bitrate_kbps": 15330 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E04.Episode.4.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -36009,15 +20703,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4946521150, - "modified_timestamp": "2023-12-25T13:46:32+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2618.144, - "bitrate_kbps": 15114 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E05.Episode.5.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -36029,15 +20715,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5175836338, - "modified_timestamp": "2023-12-25T13:46:18+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2700.096, - "bitrate_kbps": 15335 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E08.Episode.8.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -36049,15 +20727,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6167162979, - "modified_timestamp": "2023-12-25T13:46:17+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3185.376, - "bitrate_kbps": 15488 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Vigilante.S01.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB/Vigilante.S01E01.Episode.1.2160p.Disney+.WEB-DL.DDP.5.1.HDR10.H.265-CHDWEB.mkv", @@ -36069,15 +20739,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5716559246, - "modified_timestamp": "2023-12-25T12:03:41+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3051.392, - "bitrate_kbps": 14987 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第3話 1080p HDTV x264 AAC.mkv", @@ -36087,15 +20749,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1234047580, - "modified_timestamp": "2023-10-08T02:17:09+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2910.002, - "bitrate_kbps": 3392 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第2話 1080p HDTV x264 AAC.mkv", @@ -36105,15 +20759,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1283744088, - "modified_timestamp": "2023-10-08T02:17:11+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2999.958, - "bitrate_kbps": 3423 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第1話 1080p HDTV x264 AAC.mkv", @@ -36123,15 +20769,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1346280387, - "modified_timestamp": "2023-10-08T02:17:10+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3095.033, - "bitrate_kbps": 3479 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/連続ドラマW 湊かなえ「落日」 Complete 1080p HDTV x264 AAC/連続ドラマW 湊かなえ「落日」 第4話 End 1080p HDTV x264 AAC.mkv", @@ -36141,15 +20779,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1355428850, - "modified_timestamp": "2023-10-08T02:17:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3249.97, - "bitrate_kbps": 3336 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 前編 SP 720p HDTV x264 AAC-DoA.mkv", @@ -36159,15 +20789,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2188993715, - "modified_timestamp": "2021-01-16T04:01:16+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 6989.866, - "bitrate_kbps": 2505 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/教場Ⅱ SP 720p HDTV x264 AAC-DoA/教場Ⅱ 後編 SP 720p HDTV x264 AAC-DoA.mkv", @@ -36177,15 +20799,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2629349487, - "modified_timestamp": "2021-01-16T04:00:58+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 7299.797, - "bitrate_kbps": 2881 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/(ドラマ) 時をかけるな、恋人たち 第02話 「10年先の彼女」 (1440x1080i x264-AAC)-DoA.mkv", @@ -36195,15 +20809,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 881864631, - "modified_timestamp": "2024-01-05T11:58:33+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 1389.69, - "bitrate_kbps": 5076 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E02.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36215,15 +20821,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3019605308, - "modified_timestamp": "2025-02-21T09:04:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3534.272, - "bitrate_kbps": 6835 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E06.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36235,15 +20833,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2728473771, - "modified_timestamp": "2025-02-21T10:30:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3210.944, - "bitrate_kbps": 6797 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E03.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36255,15 +20845,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2546173587, - "modified_timestamp": "2025-02-21T09:23:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3004.352, - "bitrate_kbps": 6779 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E05.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36275,15 +20857,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2203808365, - "modified_timestamp": "2025-02-21T10:09:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2615.744, - "bitrate_kbps": 6740 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E01.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36295,15 +20869,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2502222507, - "modified_timestamp": "2025-02-21T08:36:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2949.856, - "bitrate_kbps": 6786 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Zero.Day.S01.1080p.NF.WEB-DL.H.264-EniaHD/Zero.Day.S01E04.1080p.NF.WEB-DL.H.264-EniaHD.mkv", @@ -36315,15 +20881,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2741397655, - "modified_timestamp": "2025-02-21T09:49:30+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3219.776, - "bitrate_kbps": 6811 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E09 - Hongwon Dong Case (1080p BluRay x265 Silence).mkv", @@ -36335,15 +20893,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1850068223, - "modified_timestamp": "2021-08-30T17:04:27+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4379.134, - "bitrate_kbps": 3379 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E03 - We Can Prevent the Killings (1080p BluRay x265 Silence).mkv", @@ -36355,15 +20905,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1305220649, - "modified_timestamp": "2021-08-30T17:04:31+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3849.641, - "bitrate_kbps": 2712 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E10 - Someone Has to Stop the Bad Guys (1080p BluRay x265 Silence).mkv", @@ -36375,15 +20917,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1674776513, - "modified_timestamp": "2021-08-30T17:04:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4408.532, - "bitrate_kbps": 3039 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E01 - You're Doomed (1080p BluRay x265 Silence).mkv", @@ -36395,15 +20929,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1535248462, - "modified_timestamp": "2021-08-30T17:04:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4604.517, - "bitrate_kbps": 2667 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E12 - The Case Was Manipulated (1080p BluRay x265 Silence).mkv", @@ -36415,15 +20941,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1749354194, - "modified_timestamp": "2021-08-30T17:04:22+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4671.584, - "bitrate_kbps": 2995 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E15 - Is It Really You (1080p BluRay x265 Silence).mkv", @@ -36435,15 +20953,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1458587147, - "modified_timestamp": "2021-08-30T17:04:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4306.177, - "bitrate_kbps": 2709 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E02 - We Still Have a Chance (1080p BluRay x265 Silence).mkv", @@ -36455,15 +20965,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1327050633, - "modified_timestamp": "2021-08-30T17:04:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3934.27, - "bitrate_kbps": 2698 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E05 - Changing the Past Alters the Present (1080p BluRay x265 Silence).mkv", @@ -36475,15 +20977,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1372173575, - "modified_timestamp": "2021-08-30T17:04:24+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4109.908, - "bitrate_kbps": 2670 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E08 - How Are You Alive (1080p BluRay x265 Silence).mkv", @@ -36495,15 +20989,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1269650771, - "modified_timestamp": "2021-08-30T17:04:27+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4523.853, - "bitrate_kbps": 2245 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E14 - Not Now, But Maybe In The Past (1080p BluRay x265 Silence).mkv", @@ -36515,15 +21001,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1609798446, - "modified_timestamp": "2021-08-30T17:04:27+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4513.593, - "bitrate_kbps": 2853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E06 - Catch Him by All Means (1080p BluRay x265 Silence).mkv", @@ -36535,15 +21013,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1532386468, - "modified_timestamp": "2021-08-30T17:03:28+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4199.252, - "bitrate_kbps": 2919 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E13 - The Real Assailant (1080p BluRay x265 Silence).mkv", @@ -36555,15 +21025,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1845347595, - "modified_timestamp": "2021-08-30T17:04:29+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4407.614, - "bitrate_kbps": 3349 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E11 - The One Last Case (1080p BluRay x265 Silence).mkv", @@ -36575,15 +21037,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1733926668, - "modified_timestamp": "2021-08-30T17:04:26+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4674.388, - "bitrate_kbps": 2967 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E16 - If You Don't Give Up (1080p BluRay x265 Silence).mkv", @@ -36595,15 +21049,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2338106244, - "modified_timestamp": "2021-08-30T17:03:49+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 5325.076, - "bitrate_kbps": 3512 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E04 - We Found the Killer (1080p BluRay x265 Silence).mkv", @@ -36615,15 +21061,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1258212699, - "modified_timestamp": "2021-08-30T17:03:41+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3960.041, - "bitrate_kbps": 2541 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Signal 2016 S01 1080p BluRay x265 HEVC 10bit AAC 2.0 Korean Silence/Signal (2016) - S01E07 - We Must Dig Deeper (1080p BluRay x265 Silence).mkv", @@ -36635,15 +21073,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1504974067, - "modified_timestamp": "2021-08-30T17:03:59+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4040.596, - "bitrate_kbps": 2979 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Wheel.of.Time.S02E02.Strangers.and.Friends.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -36655,15 +21085,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4050122192, - "modified_timestamp": "2023-09-16T06:09:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4094.08, - "bitrate_kbps": 7914 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Wheel.of.Time.S02E01.A.Taste.of.Solitude.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -36675,15 +21097,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4020602169, - "modified_timestamp": "2023-09-16T06:09:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4005.184, - "bitrate_kbps": 8030 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Wheel.of.Time.S02.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Wheel.of.Time.S02E03.What.Might.Be.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -36695,15 +21109,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4537141779, - "modified_timestamp": "2023-09-16T06:09:25+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4168.768, - "bitrate_kbps": 8706 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E10.The.Bear.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36715,15 +21121,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1771781021, - "modified_timestamp": "2023-07-29T17:07:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2438.272, - "bitrate_kbps": 5813 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E07.Forks.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36735,15 +21133,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1373348127, - "modified_timestamp": "2023-07-29T17:07:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2096.032, - "bitrate_kbps": 5241 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E05.Pop.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36755,15 +21145,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1460291089, - "modified_timestamp": "2023-07-29T17:07:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1998.72, - "bitrate_kbps": 5844 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E06.Fishes.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36775,15 +21157,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3027943436, - "modified_timestamp": "2023-07-29T17:07:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3977.056, - "bitrate_kbps": 6090 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E09.Omelette.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36795,15 +21169,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1620406335, - "modified_timestamp": "2023-07-29T17:07:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2328.864, - "bitrate_kbps": 5566 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E08.Bolognese.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36815,15 +21181,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1413342659, - "modified_timestamp": "2023-07-29T17:07:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1925.216, - "bitrate_kbps": 5872 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E02.Pasta.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36835,15 +21193,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1257949330, - "modified_timestamp": "2023-07-29T17:07:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1809.792, - "bitrate_kbps": 5560 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E03.Sundae.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36855,15 +21205,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1148777092, - "modified_timestamp": "2023-07-29T17:07:42+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1563.2, - "bitrate_kbps": 5879 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E04.Honeydew.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36875,15 +21217,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1227729459, - "modified_timestamp": "2023-07-29T17:07:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1776.096, - "bitrate_kbps": 5530 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Bear.S02.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX/The.Bear.S02E01.Beef.1080p.HULU.WEB-DL.DDP5.1.H.264-FLUX.mkv", @@ -36895,15 +21229,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1276605047, - "modified_timestamp": "2023-07-29T17:07:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1756.128, - "bitrate_kbps": 5815 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E11.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -36915,15 +21241,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1753732268, - "modified_timestamp": "2023-07-13T02:25:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3624.087, - "bitrate_kbps": 3871 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E06.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -36935,15 +21253,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1759943767, - "modified_timestamp": "2023-07-04T14:16:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3640.036, - "bitrate_kbps": 3867 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E16.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -36955,15 +21265,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1958558897, - "modified_timestamp": "2023-07-20T11:26:12+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4059.989, - "bitrate_kbps": 3859 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E10.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -36975,15 +21277,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1847484887, - "modified_timestamp": "2023-07-20T11:06:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3790.119, - "bitrate_kbps": 3899 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E07.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -36995,15 +21289,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1722793867, - "modified_timestamp": "2023-07-04T16:07:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3569.032, - "bitrate_kbps": 3861 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37015,15 +21301,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1876477952, - "modified_timestamp": "2023-07-04T02:49:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3904.033, - "bitrate_kbps": 3845 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E13.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37035,15 +21313,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1861479423, - "modified_timestamp": "2023-07-20T11:11:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3836.966, - "bitrate_kbps": 3881 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E15.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37055,15 +21325,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1839498234, - "modified_timestamp": "2023-07-20T11:26:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3807.07, - "bitrate_kbps": 3865 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E08.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37075,15 +21337,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1715073215, - "modified_timestamp": "2023-07-20T11:06:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3553.083, - "bitrate_kbps": 3861 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E02.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37095,15 +21349,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1749804738, - "modified_timestamp": "2023-07-20T11:06:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3605.068, - "bitrate_kbps": 3882 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E04.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37115,15 +21361,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1769006347, - "modified_timestamp": "2023-07-04T14:34:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3617.08, - "bitrate_kbps": 3912 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E12.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37135,15 +21373,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1833225207, - "modified_timestamp": "2023-07-20T11:06:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3803.066, - "bitrate_kbps": 3856 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E14.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37155,15 +21385,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1799270691, - "modified_timestamp": "2023-07-20T11:26:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3722.986, - "bitrate_kbps": 3866 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E09.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37175,15 +21397,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1859292057, - "modified_timestamp": "2023-07-20T11:26:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3825.088, - "bitrate_kbps": 3888 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E03.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37195,15 +21409,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1805989448, - "modified_timestamp": "2023-07-20T11:26:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3718.114, - "bitrate_kbps": 3885 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/有益的欺诈.Delightfully.Deceitful.S01.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV/有益的欺诈.Delightfully.Deceitful.S01E05.2023.1080p.friDay.WEB-DL.H264.AAC-OurTV.mkv", @@ -37215,15 +21421,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1718307643, - "modified_timestamp": "2023-07-04T12:18:21+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3561.691, - "bitrate_kbps": 3859 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/RoOT 第08話 1080p KKTV WEB-DL H264 AAC.mkv", @@ -37233,15 +21431,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 558059606, - "modified_timestamp": "2024-06-05T14:51:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1395.124, - "bitrate_kbps": 3200 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Shogun.S01E08.2024.2160p.DSNP.WEB-DL.H265.HDR.DDP5.1.mkv", @@ -37253,15 +21443,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6567869971, - "modified_timestamp": "2024-04-11T08:50:52+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3462.976, - "bitrate_kbps": 15172 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP03 v2 720p HDTV x264 AAC-DoA.mkv", @@ -37271,15 +21453,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1750635136, - "modified_timestamp": "2024-01-12T11:51:09+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3099.866, - "bitrate_kbps": 4517 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第02話 「針穴と駱駝」 (1920x1080 x264-AAC)-DoA.mkv", @@ -37289,15 +21463,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2190911043, - "modified_timestamp": "2024-08-18T12:20:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3010.007, - "bitrate_kbps": 5823 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E08.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37309,15 +21475,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 657193698, - "modified_timestamp": "2026-02-12T11:25:08+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2158.624, - "bitrate_kbps": 2435 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E09.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37329,15 +21487,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 632103198, - "modified_timestamp": "2026-02-12T11:25:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2024.352, - "bitrate_kbps": 2497 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E02.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37349,15 +21499,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 470835591, - "modified_timestamp": "2026-02-12T11:24:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1908.384, - "bitrate_kbps": 1973 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E16.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37369,15 +21511,7 @@ 16 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 762896486, - "modified_timestamp": "2026-02-12T11:25:46+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2286.752, - "bitrate_kbps": 2668 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E03.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37389,15 +21523,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 560089272, - "modified_timestamp": "2026-02-12T11:24:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1784.224, - "bitrate_kbps": 2511 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E17.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37409,15 +21535,7 @@ 17 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 648319147, - "modified_timestamp": "2026-02-12T11:25:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2074.528, - "bitrate_kbps": 2500 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E14.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37429,15 +21547,7 @@ 14 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 490906233, - "modified_timestamp": "2026-02-12T11:25:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1832.224, - "bitrate_kbps": 2143 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37449,15 +21559,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 562530211, - "modified_timestamp": "2026-02-12T11:24:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1884.32, - "bitrate_kbps": 2388 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E15.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37469,15 +21571,7 @@ 15 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 684441203, - "modified_timestamp": "2026-02-12T11:25:43+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2428.832, - "bitrate_kbps": 2254 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E06.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37489,15 +21583,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 554179977, - "modified_timestamp": "2026-02-12T11:24:53+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1894.304, - "bitrate_kbps": 2340 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E12.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37509,15 +21595,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 543784196, - "modified_timestamp": "2026-02-12T11:25:29+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2124.448, - "bitrate_kbps": 2047 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E07.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37529,15 +21607,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 469903869, - "modified_timestamp": "2026-02-12T11:25:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1944.352, - "bitrate_kbps": 1933 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E13.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37549,15 +21619,7 @@ 13 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 524482209, - "modified_timestamp": "2026-02-12T11:25:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1702.176, - "bitrate_kbps": 2464 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E04.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37569,15 +21631,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 574212695, - "modified_timestamp": "2026-02-12T11:24:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1964.448, - "bitrate_kbps": 2338 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E10.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37589,15 +21643,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 529353848, - "modified_timestamp": "2026-02-12T11:25:20+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2074.528, - "bitrate_kbps": 2041 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E05.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37609,15 +21655,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 470641517, - "modified_timestamp": "2026-02-12T11:24:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2026.4, - "bitrate_kbps": 1858 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/City.Couple's.Way.of.Love.S01.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb/City.Couple's.Way.of.Love.S01E11.2020.1080p.NF.WEB-DL.x264.DDP2.0-ADWeb.mkv", @@ -37629,15 +21667,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 505617495, - "modified_timestamp": "2026-02-12T11:25:27+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 1820.192, - "bitrate_kbps": 2222 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/True.Detective.S04E02.Night.Country.Part.2.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37649,15 +21679,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4770748054, - "modified_timestamp": "2024-01-27T11:22:18+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3763.385, - "bitrate_kbps": 10141 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37669,15 +21691,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5961296756, - "modified_timestamp": "2023-01-08T10:36:50+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3375.328, - "bitrate_kbps": 14129 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E05.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37689,15 +21703,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5202475982, - "modified_timestamp": "2023-01-08T10:36:51+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3195.648, - "bitrate_kbps": 13023 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E06.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37709,15 +21715,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5799646255, - "modified_timestamp": "2023-01-08T10:36:50+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3253.088, - "bitrate_kbps": 14262 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E01.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37729,15 +21727,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6532651565, - "modified_timestamp": "2023-01-08T10:36:50+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3411.008, - "bitrate_kbps": 15321 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E03.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37749,15 +21739,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6215454227, - "modified_timestamp": "2023-01-08T10:36:50+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3292.224, - "bitrate_kbps": 15103 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Once.Upon.A.Bite.S04.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV/Once.Upon.A.Bite.S04E02.2022.WEB-DL.4K.HEVC.DV.DDP-HDCTV.mp4", @@ -37769,15 +21751,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5801049411, - "modified_timestamp": "2023-01-08T10:36:48+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3296.768, - "bitrate_kbps": 14076 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E02.The.Dark.Place.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37789,15 +21763,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3295164087, - "modified_timestamp": "2023-04-17T11:31:52+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2674.209, - "bitrate_kbps": 9857 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E08.What.Rough.Beast.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37809,15 +21775,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3226963219, - "modified_timestamp": "2023-04-17T11:17:11+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2539.648, - "bitrate_kbps": 10165 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E04.Curiouser.and.Curiouser.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37829,15 +21787,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3268841110, - "modified_timestamp": "2023-04-17T11:31:54+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2534.976, - "bitrate_kbps": 10315 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E07.Tessa.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37849,15 +21799,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3075240513, - "modified_timestamp": "2023-04-17T11:31:54+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2404.928, - "bitrate_kbps": 10229 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E05.The.Thrall.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37869,15 +21811,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3134017799, - "modified_timestamp": "2023-04-17T11:31:51+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2599.424, - "bitrate_kbps": 9645 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E03.Second.Line.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37889,15 +21823,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3145484581, - "modified_timestamp": "2023-04-17T11:31:50+00:00", - "resolution": "1792x1080", - "codec": "h264", - "duration_seconds": 2442.792, - "bitrate_kbps": 10301 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E01.The.Witching.Hour.REPACK.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37909,15 +21835,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4054592489, - "modified_timestamp": "2023-04-17T11:31:55+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3160.544, - "bitrate_kbps": 10263 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Anne.Rices.Mayfair.Witches.S01.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb/Anne.Rices.Mayfair.Witches.S01E06.Transference.1080p.AMZN.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -37929,15 +21847,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3989242360, - "modified_timestamp": "2023-04-17T11:31:52+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3127.264, - "bitrate_kbps": 10205 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E06.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -37949,15 +21859,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1565462828, - "modified_timestamp": "2023-02-23T13:30:21+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2799.04, - "bitrate_kbps": 4474 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E02.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -37969,15 +21871,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1574644504, - "modified_timestamp": "2023-02-23T13:30:12+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2800.032, - "bitrate_kbps": 4498 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E11.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -37989,15 +21883,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1532843381, - "modified_timestamp": "2023-02-23T13:30:50+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2754.048, - "bitrate_kbps": 4452 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E10.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38009,15 +21895,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1484773350, - "modified_timestamp": "2023-02-23T13:30:53+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2792.0, - "bitrate_kbps": 4254 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E07.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38029,15 +21907,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1570432893, - "modified_timestamp": "2023-02-23T13:30:12+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2784.0, - "bitrate_kbps": 4512 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E03.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38049,15 +21919,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1586149714, - "modified_timestamp": "2023-02-23T13:29:44+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2800.032, - "bitrate_kbps": 4531 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E09.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38069,15 +21931,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1613829406, - "modified_timestamp": "2023-02-23T13:30:50+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2799.04, - "bitrate_kbps": 4612 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E12.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38089,15 +21943,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2752114484, - "modified_timestamp": "2023-02-23T13:30:53+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 5806.048, - "bitrate_kbps": 3792 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E05.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38109,15 +21955,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1681386867, - "modified_timestamp": "2023-02-23T13:30:40+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2799.04, - "bitrate_kbps": 4805 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38129,15 +21967,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1575236342, - "modified_timestamp": "2023-02-23T13:29:14+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2784.0, - "bitrate_kbps": 4526 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E04.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38149,15 +21979,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1527246368, - "modified_timestamp": "2023-02-23T13:30:02+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2800.032, - "bitrate_kbps": 4363 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Furikaereba.yatsu.ga.iru.S01.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN/Furikaereba.yatsu.ga.iru.S01E08.1080p.AMZN.WEB-DL.DD+2.0.H.264-ARiN.mkv", @@ -38169,15 +21991,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1524914863, - "modified_timestamp": "2023-02-23T13:30:52+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 2779.008, - "bitrate_kbps": 4389 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E05.Pregame.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38189,15 +22003,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3305132475, - "modified_timestamp": "2024-07-26T02:05:58+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2458.373, - "bitrate_kbps": 10755 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E07.The.Witness.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38209,15 +22015,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3445497220, - "modified_timestamp": "2024-07-26T02:05:59+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2539.704, - "bitrate_kbps": 10853 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E04.The.Burden.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38229,15 +22027,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3512166952, - "modified_timestamp": "2024-07-26T02:06:00+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2582.872, - "bitrate_kbps": 10878 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E03.Discovery.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38249,15 +22039,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3455963529, - "modified_timestamp": "2024-07-26T02:06:00+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2556.638, - "bitrate_kbps": 10814 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E06.The.Elements.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38269,15 +22051,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3429178231, - "modified_timestamp": "2024-07-26T02:06:38+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2529.944, - "bitrate_kbps": 10843 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Presumed.Innocent.S01.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb/Presumed.Innocent.S01E08.The.Verdict.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -38289,15 +22063,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4085648587, - "modified_timestamp": "2024-07-26T02:05:58+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3013.052, - "bitrate_kbps": 10847 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Believe-君にかける橋- 第1話 生きるため、俺は誰を信じるのか 1080p TVer WEB-DL H264 AAC-Solitude@DoA.mkv", @@ -38307,15 +22073,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1131686585, - "modified_timestamp": "2024-05-01T08:24:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3265.237, - "bitrate_kbps": 2772 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep1] 怪盜羅蘋 - 第 1 章.mkv", @@ -38325,15 +22083,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2875297713, - "modified_timestamp": "2021-01-16T04:22:45+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2834.28, - "bitrate_kbps": 8115 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep2] 怪盜羅蘋 - 第 2 章.mkv", @@ -38343,15 +22093,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 3049818226, - "modified_timestamp": "2021-01-16T04:22:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3135.68, - "bitrate_kbps": 7780 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep3] 怪盜羅蘋 - 第 3 章.mkv", @@ -38361,15 +22103,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2822864863, - "modified_timestamp": "2021-01-16T04:22:41+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2519.44, - "bitrate_kbps": 8963 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep4] 怪盜羅蘋 - 第 4 章.mkv", @@ -38379,15 +22113,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2685239190, - "modified_timestamp": "2021-01-16T04:22:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2837.0, - "bitrate_kbps": 7572 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/亚森·罗宾.Arsene Lupin.2021.1080p.WEB-DL.H264.AC3-HDHWEB/[第 1 部.Ep5] 怪盜羅蘋 - 第 5 章.mkv", @@ -38397,15 +22123,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2627062390, - "modified_timestamp": "2021-01-16T04:22:39+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2598.4, - "bitrate_kbps": 8088 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP09.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38415,15 +22133,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1562217755, - "modified_timestamp": "2025-03-25T05:15:38+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3662.16, - "bitrate_kbps": 3412 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP08.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38433,15 +22143,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1312834513, - "modified_timestamp": "2025-03-25T05:13:10+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2903.805, - "bitrate_kbps": 3616 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP07.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38451,15 +22153,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1410504266, - "modified_timestamp": "2025-03-25T05:11:17+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2876.44, - "bitrate_kbps": 3922 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP06.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38469,15 +22163,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1278119843, - "modified_timestamp": "2025-03-25T05:09:06+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2917.185, - "bitrate_kbps": 3505 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP05.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38487,15 +22173,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1616933834, - "modified_timestamp": "2025-03-25T05:06:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3015.18, - "bitrate_kbps": 4290 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP04.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38505,15 +22183,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1253950158, - "modified_timestamp": "2025-03-25T05:06:38+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2842.64, - "bitrate_kbps": 3528 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP10.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38523,15 +22193,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2207547756, - "modified_timestamp": "2025-03-25T05:17:20+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4213.745, - "bitrate_kbps": 4191 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP03.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38541,15 +22203,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1262777702, - "modified_timestamp": "2025-03-25T05:02:32+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 2804.902, - "bitrate_kbps": 3601 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP02.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38559,15 +22213,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2193312937, - "modified_timestamp": "2025-03-25T04:59:37+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3591.99, - "bitrate_kbps": 4884 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Dragon.Zakura.2021.EP01.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38577,15 +22223,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2451561568, - "modified_timestamp": "2025-03-25T04:56:36+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 4148.045, - "bitrate_kbps": 4728 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP4.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38595,15 +22233,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1037278230, - "modified_timestamp": "2025-03-25T04:51:35+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 1157.156, - "bitrate_kbps": 7171 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP5.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38613,15 +22243,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 204324674, - "modified_timestamp": "2025-03-25T04:52:36+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 301.301, - "bitrate_kbps": 5425 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP1.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38631,15 +22253,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1538206984, - "modified_timestamp": "2025-03-25T04:47:10+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 1470.503, - "bitrate_kbps": 8368 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP2.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38649,15 +22263,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 980533936, - "modified_timestamp": "2025-03-25T04:47:37+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 1271.27, - "bitrate_kbps": 6170 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Dragon.Zakura.2021.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS/Bonus/Dragon.Zakura.2021.Bonus.Disc.SP3.1080p.BluRay.x265.10bit.FLAC.MNHD-FRDS.mkv", @@ -38667,15 +22273,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 971197660, - "modified_timestamp": "2025-03-25T04:49:25+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 1802.801, - "bitrate_kbps": 4309 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/こっち向いてよ向井くん EP02 720p HDTV x264 AAC-DoA.mkv", @@ -38685,15 +22283,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1856236650, - "modified_timestamp": "2024-01-12T11:08:19+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 3109.776, - "bitrate_kbps": 4775 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多电视剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.MKV", @@ -38703,15 +22293,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 636976, - "modified_timestamp": "2025-06-26T14:23:38+00:00", - "resolution": null, - "codec": null, - "duration_seconds": null, - "bitrate_kbps": null - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/【更多高清剧集下载请访问 www.BPHDTV.com】【更多剧集打包下载请访问 www.BPHDTV.com】.mkv", @@ -38721,15 +22303,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 636976, - "modified_timestamp": "2025-06-26T14:23:38+00:00", - "resolution": null, - "codec": null, - "duration_seconds": null, - "bitrate_kbps": null - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【高清剧集网发布 www.TTHDTT.com】未知的首尔[第08集][中文字幕].Our.Unwritten.Seoul.S01.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV/Our.Unwritten.Seoul.S01E08.An.Unconventional.Whole.1080p.NF.WEB-DL.AAC.2.0.H.264-BlackTV.mkv", @@ -38741,15 +22315,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3093625459, - "modified_timestamp": "2025-06-27T08:44:49+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4844.374, - "bitrate_kbps": 5108 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Deaths.Game.S01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB/Deaths.Game.S01E01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", @@ -38761,15 +22327,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3118206967, - "modified_timestamp": "2024-01-20T11:44:17+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2716.736, - "bitrate_kbps": 9182 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Deaths.Game.S01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB/Deaths.Game.S01E04.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", @@ -38781,15 +22339,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3916097860, - "modified_timestamp": "2024-01-20T11:44:17+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3879.918, - "bitrate_kbps": 8074 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Deaths.Game.S01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB/Deaths.Game.S01E02.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", @@ -38801,15 +22351,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3206402203, - "modified_timestamp": "2024-01-20T11:44:17+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3047.086, - "bitrate_kbps": 8418 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Deaths.Game.S01.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB/Deaths.Game.S01E03.2023.1080p.AMZN.WEB-DL.DDP2.0.H264-HHWEB.mkv", @@ -38821,15 +22363,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4082318723, - "modified_timestamp": "2024-01-20T11:44:16+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3463.502, - "bitrate_kbps": 9429 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP10.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38839,15 +22373,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1902808293, - "modified_timestamp": "2023-07-08T05:34:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2764.992, - "bitrate_kbps": 5505 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP07.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38857,15 +22383,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2002969404, - "modified_timestamp": "2023-07-08T05:34:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2768.16, - "bitrate_kbps": 5788 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP03.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38875,15 +22393,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1978102555, - "modified_timestamp": "2023-07-08T05:34:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 5692 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP06.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38893,15 +22403,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2093073352, - "modified_timestamp": "2023-07-08T05:34:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 6023 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP02.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38911,15 +22413,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1911756217, - "modified_timestamp": "2023-07-08T05:34:35+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 5501 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP11.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38929,15 +22423,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2449333829, - "modified_timestamp": "2023-07-08T05:34:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3399.008, - "bitrate_kbps": 5764 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP04.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38947,15 +22433,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1787256537, - "modified_timestamp": "2023-07-08T05:34:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 5143 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP08.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38965,15 +22443,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 1932022224, - "modified_timestamp": "2023-07-08T05:34:33+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 5559 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP09.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -38983,15 +22453,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2184467102, - "modified_timestamp": "2023-07-08T05:34:32+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2780.0, - "bitrate_kbps": 6286 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP05.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -39001,15 +22463,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2048593763, - "modified_timestamp": "2023-07-08T05:34:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2757.216, - "bitrate_kbps": 5943 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Kazama Kimichika Kyojo Zero 2023 Complete 1080p AMZN WEB-DL AAC2.0 x264-MagicStar/Kazama.Kimichika.Kyoujou.Zero.EP01.1080p.AMZN.WEB-DL.DDP2.0.H.264-MagicStar.mkv", @@ -39019,15 +22473,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2890055685, - "modified_timestamp": "2023-07-08T05:34:40+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4224.032, - "bitrate_kbps": 5473 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Foundation.S01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY/Foundation.S01E01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv", @@ -39039,15 +22485,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5694663519, - "modified_timestamp": "2021-09-25T13:09:26+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 4155.744, - "bitrate_kbps": 10962 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Foundation.S01.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY/Foundation.S01E02.2021.AppleTV+.WEB-DL.1080p.H264.DDP-AREY.mkv", @@ -39059,15 +22497,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5058531016, - "modified_timestamp": "2021-09-25T13:09:26+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3702.496, - "bitrate_kbps": 10929 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Dark.Matter.2024.S01E06.Superposition.1080p.ATVP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39079,15 +22509,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 4474003619, - "modified_timestamp": "2024-06-08T04:53:15+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 3291.872, - "bitrate_kbps": 10872 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E05.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39099,15 +22521,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1954534930, - "modified_timestamp": "2025-01-31T08:32:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2859.2, - "bitrate_kbps": 5468 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E04.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39119,15 +22533,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1971034706, - "modified_timestamp": "2025-01-31T08:29:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2878.784, - "bitrate_kbps": 5477 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E07.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39139,15 +22545,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2198339552, - "modified_timestamp": "2025-01-31T08:32:28+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3209.408, - "bitrate_kbps": 5479 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E06.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39159,15 +22557,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1996323151, - "modified_timestamp": "2025-01-31T08:32:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2915.705, - "bitrate_kbps": 5477 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39179,15 +22569,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2254415857, - "modified_timestamp": "2025-01-31T08:12:54+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3281.984, - "bitrate_kbps": 5495 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E03.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39199,15 +22581,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2247002895, - "modified_timestamp": "2025-01-31T08:25:02+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3269.696, - "bitrate_kbps": 5497 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E02.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39219,15 +22593,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2221791914, - "modified_timestamp": "2025-01-31T08:19:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3228.608, - "bitrate_kbps": 5505 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Trauma.Code.Heroes.on.Call.S01.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb/The.Trauma.Code.Heroes.on.Call.S01E08.2025.1080p.NF.WEB-DL.x264.DDP5.1-ADWeb.mkv", @@ -39239,15 +22605,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2268789114, - "modified_timestamp": "2025-01-31T08:32:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3303.884, - "bitrate_kbps": 5493 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E08.The.Orphanage.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39259,15 +22617,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5614257687, - "modified_timestamp": "2026-02-03T13:34:57+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2950.592, - "bitrate_kbps": 15222 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E01.Copenhagen.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39279,15 +22629,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6405805069, - "modified_timestamp": "2026-02-03T13:26:12+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3386.688, - "bitrate_kbps": 15131 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E03.False.Flag.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39299,15 +22641,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6133811175, - "modified_timestamp": "2026-02-03T13:28:42+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3220.352, - "bitrate_kbps": 15237 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E06.Allegiance.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39319,15 +22653,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5427486162, - "modified_timestamp": "2026-02-03T13:32:33+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2866.848, - "bitrate_kbps": 15145 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E05.Looking.Glass.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39339,15 +22665,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5909019935, - "modified_timestamp": "2026-02-03T13:31:14+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3101.984, - "bitrate_kbps": 15239 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E04.Obsidian.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39359,15 +22677,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 6135136894, - "modified_timestamp": "2026-02-03T13:29:59+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3219.872, - "bitrate_kbps": 15243 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E07.Not.the.World.of.Men.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39379,15 +22689,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5598247961, - "modified_timestamp": "2026-02-03T13:33:49+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 2945.664, - "bitrate_kbps": 15204 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Copenhagen.Test.S01.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR/The.Copenhagen.Test.S01E02.Glass.House.2160p.AMZN.WEB-DL.DDP5.1.H.265-RAWR.mkv", @@ -39399,15 +22701,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 5831721861, - "modified_timestamp": "2026-02-03T13:27:31+00:00", - "resolution": "3840x2160", - "codec": "hevc", - "duration_seconds": 3066.656, - "bitrate_kbps": 15213 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E08.The.Gospel.According.to.Bobby.Glass.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39419,15 +22713,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1769098550, - "modified_timestamp": "2024-03-11T10:35:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2594.5, - "bitrate_kbps": 5454 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E06.All.Eventualities.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39439,15 +22725,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2003201228, - "modified_timestamp": "2024-03-11T10:35:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2915.584, - "bitrate_kbps": 5496 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E04.An.Unsympathetic.Gentleman.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39459,15 +22737,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1683953710, - "modified_timestamp": "2024-03-11T10:35:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2469.417, - "bitrate_kbps": 5455 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E07.Not.Without.Danger.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39479,15 +22749,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1782615836, - "modified_timestamp": "2024-03-11T10:35:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2613.25, - "bitrate_kbps": 5457 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E01.Refined.Aggression.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39499,15 +22761,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2803161788, - "modified_timestamp": "2024-03-11T10:35:17+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 4027.959, - "bitrate_kbps": 5567 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E05.Ive.Hundreds.of.Cousins.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39519,15 +22773,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1807657808, - "modified_timestamp": "2024-03-11T10:35:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2643.209, - "bitrate_kbps": 5471 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E03.Wheres.My.Weed.At.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39539,15 +22785,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2069788668, - "modified_timestamp": "2024-03-11T10:35:14+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3005.959, - "bitrate_kbps": 5508 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/The.Gentlemen.S01.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX/The.Gentlemen.S01E02.Tackle.Tommy.Woo.Woo.1080p.NF.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -39559,15 +22797,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2632320201, - "modified_timestamp": "2024-03-11T10:35:18+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3794.375, - "bitrate_kbps": 5549 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP01.mkv", @@ -39577,15 +22807,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 451601108, - "modified_timestamp": "2020-11-04T15:31:33+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2434.965, - "bitrate_kbps": 1483 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP06.mkv", @@ -39595,15 +22817,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 511294008, - "modified_timestamp": "2020-11-04T15:30:13+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2435.008, - "bitrate_kbps": 1679 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP07 END.mkv", @@ -39613,15 +22827,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 470687512, - "modified_timestamp": "2020-11-04T15:31:27+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2404.969, - "bitrate_kbps": 1565 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP03.mkv", @@ -39631,15 +22837,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 461632369, - "modified_timestamp": "2020-11-04T15:31:27+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2434.944, - "bitrate_kbps": 1516 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP04.mkv", @@ -39649,15 +22847,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 495898647, - "modified_timestamp": "2020-11-04T15:31:27+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2435.008, - "bitrate_kbps": 1629 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP05.mkv", @@ -39667,15 +22857,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 453574893, - "modified_timestamp": "2020-11-04T15:30:48+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2434.932, - "bitrate_kbps": 1490 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/【东京不够热】破解不在场证明 EP01_07/TNHSub_alibaikutsushi EP02.mkv", @@ -39685,15 +22867,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 437387033, - "modified_timestamp": "2020-11-04T15:31:33+00:00", - "resolution": "1280x720", - "codec": "h264", - "duration_seconds": 2434.901, - "bitrate_kbps": 1437 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E03.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39705,15 +22879,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2460947603, - "modified_timestamp": "2022-10-06T02:44:56+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3245.856, - "bitrate_kbps": 6065 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E05.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39725,15 +22891,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2275500855, - "modified_timestamp": "2022-10-06T02:44:56+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3095.68, - "bitrate_kbps": 5880 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E09.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39745,15 +22903,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2480651690, - "modified_timestamp": "2022-10-06T02:45:01+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3329.952, - "bitrate_kbps": 5959 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E02.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39765,15 +22915,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2884227828, - "modified_timestamp": "2022-10-06T02:44:59+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3752.352, - "bitrate_kbps": 6149 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E04.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39785,15 +22927,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2487842470, - "modified_timestamp": "2022-10-06T02:44:58+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3293.888, - "bitrate_kbps": 6042 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E08.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39805,15 +22939,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1353103732, - "modified_timestamp": "2022-10-06T02:45:06+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 1934.528, - "bitrate_kbps": 5595 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E07.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39825,15 +22951,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2680695923, - "modified_timestamp": "2022-10-06T02:45:00+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3478.08, - "bitrate_kbps": 6165 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39845,15 +22963,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2785193128, - "modified_timestamp": "2022-10-06T02:44:57+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3582.208, - "bitrate_kbps": 6220 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Squid.Game.S01.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY/Squid.Game.S01E06.2021.Netflix.WEB-DL.1080p.HEVC.DDP-AREY.mkv", @@ -39865,15 +22975,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2878318917, - "modified_timestamp": "2022-10-06T02:45:02+00:00", - "resolution": "1920x1080", - "codec": "hevc", - "duration_seconds": 3698.24, - "bitrate_kbps": 6226 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E05.The.Axe.Forgets.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39885,15 +22987,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1950877002, - "modified_timestamp": "2023-01-03T12:46:04+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2590.304, - "bitrate_kbps": 6025 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E09.Nobodys.Listening.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39905,15 +22999,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2166196819, - "modified_timestamp": "2023-01-03T12:54:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2812.672, - "bitrate_kbps": 6161 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E11.Daughter.of.Ferrix.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39925,15 +23011,7 @@ 11 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2006972139, - "modified_timestamp": "2023-01-03T12:54:38+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2576.8, - "bitrate_kbps": 6230 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E10.One.Way.Out.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39945,15 +23023,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2019405657, - "modified_timestamp": "2023-01-03T12:54:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2567.712, - "bitrate_kbps": 6291 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E08.Narkina.5.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39965,15 +23035,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2421329638, - "modified_timestamp": "2023-01-03T12:54:24+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3195.136, - "bitrate_kbps": 6062 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E04.Aldhani.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -39985,15 +23047,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2199274575, - "modified_timestamp": "2023-01-03T12:46:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2817.056, - "bitrate_kbps": 6245 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E07.Announcement.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40005,15 +23059,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2303384155, - "modified_timestamp": "2023-01-03T12:54:23+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3011.808, - "bitrate_kbps": 6118 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E12.Rix.Road.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40025,15 +23071,7 @@ 12 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2767784787, - "modified_timestamp": "2023-01-03T12:54:37+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3251.424, - "bitrate_kbps": 6810 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E03.Reckoning.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40045,15 +23083,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2180332316, - "modified_timestamp": "2023-01-03T12:38:51+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2417.28, - "bitrate_kbps": 7215 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E06.The.Eye.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40065,15 +23095,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2532437070, - "modified_timestamp": "2023-01-03T12:45:34+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3037.344, - "bitrate_kbps": 6670 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E01.Kassa.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40085,15 +23107,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1985664765, - "modified_timestamp": "2023-01-03T12:37:57+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2350.592, - "bitrate_kbps": 6758 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/Star.Wars.Andor.S01.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb/Star.Wars.Andor.S01E02.That.Would.Be.Me.1080p.DSNP.WEB-DL.DDP5.1.H.264-NTb.mkv", @@ -40105,15 +23119,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 1791356250, - "modified_timestamp": "2023-01-03T12:38:13+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2138.048, - "bitrate_kbps": 6702 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E06.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40125,15 +23131,7 @@ 6 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3443053580, - "modified_timestamp": "2026-01-20T06:06:26+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.914333, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40145,15 +23143,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3428631418, - "modified_timestamp": "2026-01-20T06:03:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2788.586333, - "bitrate_kbps": 9836 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E09.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40165,15 +23155,7 @@ 9 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3705455670, - "modified_timestamp": "2026-01-20T06:07:56+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3013.482333, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E07.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40185,15 +23167,7 @@ 7 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3442505975, - "modified_timestamp": "2026-01-20T06:06:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.743667, - "bitrate_kbps": 9836 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E10.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40205,15 +23179,7 @@ 10 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3717694496, - "modified_timestamp": "2026-01-20T06:08:31+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3023.967, - "bitrate_kbps": 9835 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E08.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40225,15 +23191,7 @@ 8 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3424221210, - "modified_timestamp": "2026-01-20T06:07:22+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2784.682367, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E03.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40245,15 +23203,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3442728814, - "modified_timestamp": "2026-01-20T06:04:47+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.807667, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E04.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40265,15 +23215,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3442622467, - "modified_timestamp": "2026-01-20T06:05:19+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.701333, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E02.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40285,15 +23227,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3442937381, - "modified_timestamp": "2026-01-20T06:04:15+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2799.871667, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/那你来做做看啊.Then.You.Try.Making.It.2025.S01.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb/那你来做做看啊.Then.You.Try.Making.It.2025.S01E05.1080p.friDay.WEB-DL.H.264.AAC-AilMWeb.mp4", @@ -40305,15 +23239,7 @@ 5 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3424752624, - "modified_timestamp": "2026-01-20T06:05:50+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2785.194333, - "bitrate_kbps": 9837 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E04.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -40325,15 +23251,7 @@ 4 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2392638116, - "modified_timestamp": "2025-03-12T15:57:58+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3577.6, - "bitrate_kbps": 5350 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E02.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -40345,15 +23263,7 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2309080249, - "modified_timestamp": "2025-03-12T15:42:03+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3245.28, - "bitrate_kbps": 5692 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E03.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -40365,15 +23275,7 @@ 3 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2726145402, - "modified_timestamp": "2025-03-12T15:51:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3793.824, - "bitrate_kbps": 5748 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01.Complete.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB/[苦尽柑来遇见你].When.Life.Gives.You.Tangerines.2025.S01E01.1080p.NF.WEB-DL.H264.DDP5.1.Atmos-UBWEB.mkv", @@ -40385,15 +23287,7 @@ 1 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 2309908772, - "modified_timestamp": "2025-03-12T15:31:36+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 3453.472, - "bitrate_kbps": 5350 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマ) 完全無罪 第03話 「正義という名の罪」 (1920x1080 x264-AAC)-DoA.mkv", @@ -40403,15 +23297,7 @@ "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 2595530155, - "modified_timestamp": "2024-08-18T12:29:44+00:00", - "resolution": "1920x1080", - "codec": "h264", - "duration_seconds": 2929.977, - "bitrate_kbps": 7086 - } + "needs_review": true }, { "path": "/mnt/Downloads/series/Reacher.S03E02.Truckin.1080p.AMZN.WEB-DL.DDP5.1.Atmos.H.264-FLUX.mkv", @@ -40423,33 +23309,17 @@ 2 ], "confidence": 0.9, - "needs_review": false, - "video_metadata": { - "size_bytes": 3010032691, - "modified_timestamp": "2025-02-23T11:58:03+00:00", - "resolution": "1920x960", - "codec": "h264", - "duration_seconds": 2580.161, - "bitrate_kbps": 9332 - } + "needs_review": false }, { "path": "/mnt/Downloads/series/(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv", "filename": "(ドラマSP) GTOリバイバル [2024.04.01] (1440x1080i x264-AAC)-DoA.mkv", "category": "series", - "title": "(ドラマSP) GTOリバイバル (1440x1080i -)-DoA", + "title": "(ドラマSP) GTOリバイバル [2024 04 01] (1440x1080i -)-DoA", "season": null, "episodes": [], "confidence": 0.3, - "needs_review": true, - "video_metadata": { - "size_bytes": 4615570140, - "modified_timestamp": "2024-06-14T11:13:26+00:00", - "resolution": "1440x1080", - "codec": "h264", - "duration_seconds": 5530.024, - "bitrate_kbps": 6677 - } + "needs_review": true } ], "anime": [ @@ -51493,6 +34363,12 @@ "category": "anime", "note": "Anime parsing deferred in v1" }, + { + "path": "/mnt/Downloads/anime/[ANi] 判處勇者刑 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 判處勇者刑 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1" + }, { "path": "/mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", "filename": "[ANi] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", @@ -53527,6 +36403,12 @@ "category": "anime", "note": "Anime parsing deferred in v1" }, + { + "path": "/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "filename": "[ANi] 魔都精兵的奴隸 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", + "category": "anime", + "note": "Anime parsing deferred in v1" + }, { "path": "/mnt/Downloads/anime/[ANi] 永遠的黃昏 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", "filename": "[ANi] 永遠的黃昏 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4", diff --git a/inventory.csv b/inventory.csv index 5d0c042..041fc98 100644 --- a/inventory.csv +++ b/inventory.csv @@ -1,5 +1,5 @@ # vlm_schema_version: 1.0 -# Generated: 2026-02-13T03:25:12 +# Generated: 2026-02-20T15:00:47 # Library Root: /mnt/Downloads path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_seconds,bitrate_kbps /mnt/Downloads/anime/[Nekomoe kissaten][ZENSHU][01][1080p][CHS].mp4,[Nekomoe kissaten][ZENSHU][01][1080p][CHS].mp4,702447940,2025-01-10T00:07:25,anime,1920x1080,h264,1434.877098,3916 @@ -878,7 +878,7 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/anime/[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 不時輕聲地以俄語遮羞的鄰座艾莉同學 - 12 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,301871147,2024-09-18T15:06:29,anime,1920x1080,h264,1510.037333,1599 /mnt/Downloads/anime/[ANi] 判處勇者刑 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 判處勇者刑 - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,389019769,2026-01-29T13:46:20,anime,1920x1080,h264,1470.122667,2116 /mnt/Downloads/anime/[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 新人大叔冒險者,被最強隊伍操到死成無敵 - 10 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,487855442,2024-09-10T01:29:26,anime,1920x1080,h264,1424.9862,2738 -/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#7/《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4,《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4,182456935,2022-05-19T01:46:49,anime,1920x1080,h264,1420.109206,1027 +/mnt/Downloads/anime/《盾之勇者成名錄 第二季》#7/《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4,《盾之勇者成名錄 第二季》#7 (日語原聲)【Ani-One ULTRA】.mp4,182456935,2022-05-19T01:46:49,anime,,,, /mnt/Downloads/anime/[ANi] 失憶投捕 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 失憶投捕 - 11 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,462126467,2024-06-25T23:11:27,anime,1920x1080,h264,1435.008,2576 /mnt/Downloads/anime/[ANi] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 身為暗殺者的我明顯比勇者還強 - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,621838661,2025-10-21T05:36:29,anime,1920x1080,h264,1430.074622,3478 /mnt/Downloads/anime/[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 使人誤解的工房主~關於原英雄隊伍的雜役人員,實際上除了戰鬥能力外全是SSS的故事~ - 04 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,284650804,2025-04-20T23:12:12,anime,1920x1080,h264,1420.074667,1603 @@ -1842,6 +1842,7 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/anime/[Nekomoe kissaten][Ishura][11][1080p][JPSC].mp4,[Nekomoe kissaten][Ishura][11][1080p][JPSC].mp4,296077840,2024-03-15T00:08:45,anime,1920x1080,h264,1422.086667,1665 /mnt/Downloads/anime/[Nekomoe kissaten][Dungeon Meshi][19][1080p][JPTC].mp4,[Nekomoe kissaten][Dungeon Meshi][19][1080p][JPTC].mp4,449481550,2024-05-11T15:25:25,anime,1920x1080,h264,1531.114667,2348 /mnt/Downloads/anime/[orion origin] Boukyaku Battery [04] [1080p] [H265 AAC] [CHT&JPN].mp4,[orion origin] Boukyaku Battery [04] [1080p] [H265 AAC] [CHT&JPN].mp4,431953387,2024-06-27T12:13:53,anime,1920x1080,hevc,1435.039002,2408 +/mnt/Downloads/anime/[ANi] 判處勇者刑 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 判處勇者刑 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,399301238,2026-02-20T07:12:32,anime,1920x1080,h264,1470.037333,2173 /mnt/Downloads/anime/[ANi] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 我獨自升級 第二季 -起於闇影- - 14 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,608358255,2025-01-12T00:18:23,anime,1920x1080,h264,1425.365333,3414 /mnt/Downloads/anime/[ANi] 素材採集家的異世界旅行記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 素材採集家的異世界旅行記 - 02 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,363409357,2025-10-21T01:22:01,anime,1920x1080,h264,1420.022911,2047 /mnt/Downloads/anime/Record.of.Ragnarok.S02E01.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF/Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,Record.of.Ragnarok.S02E04.The.Final.Labor.1080p.NF.WEB-DL.DUAL.DDP2.0.H.264-SMURF.mkv,1210343939,2023-02-05T02:57:53,anime,1920x1080,h264,1496.096,6472 @@ -2181,6 +2182,7 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/anime/[LoliHouse] DanMachi S5 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,[LoliHouse] DanMachi S5 - 09 [WebRip 1080p HEVC-10bit AAC SRTx2].mkv,318361428,2024-12-19T13:59:53,anime,1920x1080,hevc,1420.016,1793 /mnt/Downloads/anime/[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 香格里拉・開拓異境~糞作獵手挑戰神作~ 第二季 - 20 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,818993745,2025-02-23T10:45:22,anime,1920x1080,h264,1422.066622,4607 /mnt/Downloads/anime/[Dont be a simp] Ao no Hako - 23 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv,[Dont be a simp] Ao no Hako - 23 [NF WebRip 1080p HEVC-10bit E-AC-3 Multi-Subs].mkv,527846281,2025-03-16T23:28:16,anime,1920x1080,hevc,1434.176,2944 +/mnt/Downloads/anime/[ANi] 魔都精兵的奴隸 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 魔都精兵的奴隸 第二季 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,386592868,2026-02-20T07:11:40,anime,1920x1080,h264,1422.066622,2174 /mnt/Downloads/anime/[ANi] 永遠的黃昏 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 永遠的黃昏 - 05 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,303831547,2025-10-30T23:55:09,anime,1920x1080,h264,1434.965333,1693 /mnt/Downloads/anime/[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] NUKITASHI 住在拔作島上的我該如何是好? [年齡限制版] - 03 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,456559198,2025-08-02T12:56:07,anime,1920x1080,h264,1425.045333,2563 /mnt/Downloads/anime/[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,[ANi] 貫徹輔助魔法支援弱小隊友的宮廷魔法師,慘遭驅逐後目標成為最強冒險者 - 07 [1080P][Baha][WEB-DL][AAC AVC][CHT].mp4,367252101,2025-11-16T00:36:47,anime,1920x1080,h264,1417.152,2073 @@ -2595,7 +2597,6 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/西游降魔篇.Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Journey.to.the.West.Conquering.the.Demons.2013.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,7069807110,2021-02-17T16:35:58,movie,1920x816,hevc,6583.264,8591 /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/唐伯虎点秋香.Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Flirting.Scholar.1993.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,9766127065,2021-02-17T16:36:04,movie,1920x1080,hevc,6131.167,12742 /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/鹿鼎记2:神龙教.Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Royal.Tramp.II.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6108040701,2021-02-17T16:35:54,movie,1920x1024,hevc,5859.648,8339 -/mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/赌侠.God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,God.of.Gamblers.II.1991.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5467405922,2021-02-17T16:35:53,movie,1920x1080,hevc,6286.334,6957 /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/望夫成龙.Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Love.is.Love.1990.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,5004906707,2021-02-17T16:31:05,movie,1920x1038,hevc,5734.02,6982 /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/大内密探零零发.Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,Forbidden.City.Cop.1996.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,3857331231,2021-02-17T16:36:00,movie,1920x1080,hevc,5322.667,5797 /mnt/Downloads/movies/周星驰.Stephen.Chow.1988-2017.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/武状元苏乞儿.King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS/King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,King.of.Beggars.1992.BluRay.1080p.x265.10bit.2Audio.MNHD-FRDS.mkv,6798150592,2021-02-17T16:36:14,movie,1920x1024,hevc,6002.747,9060 @@ -2929,7 +2930,6 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/movies/Dog.2022.1080p.BluRay.x264.DTS-WiKi/Sample/Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,Dog.2022.1080p.BluRay.x264.DTS-WiKi.Sample.mkv,122723290,2022-05-26T10:20:05,movie,1920x800,h264,62.563,15692 /mnt/Downloads/movies/Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv,Vernost AKA Fidelity 2019 1080p BluRay DD5.1 x264-BdC.mkv,8768133740,2020-12-24T14:16:05,movie,1920x804,h264,4906.112,14297 /mnt/Downloads/movies/Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai/Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai.mkv,Swordsman.2.1992.BluRay.1080p.2Audio.TrueHD.5.1.x265.10bit-BeiTai.mkv,14811770763,2020-06-26T14:41:14,movie,1920x1080,hevc,6514.976,18187 -/mnt/Downloads/movies/Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv,Detective VS. Sleuths 2022 WEB-DL 4K H.265 DDP 2.0 & AAC 4Audios-Dave.mkv,3684770524,2022-08-27T10:57:48,movie,3840x1612,hevc,6056.832,4866 /mnt/Downloads/movies/Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG/Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv,Extraction.2020.1080p.NF.WEB-DL.DDP5.1.Atmos.HDR.HEVC-CMRG.mkv,4768429320,2020-04-26T05:42:43,movie,1920x1080,hevc,7046.688,5413 /mnt/Downloads/movies/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi/Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,Julie.&.Julia.2009.1080p.BluRay.x265.10bit.DTS-WiKi.mkv,9734910533,2025-03-13T10:49:37,movie,1920x1040,hevc,7392.395,10535 /mnt/Downloads/movies/Moonlight.Express.1999.720p.BluRay.x264-WiKi/Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv,Moonlight.Express.1999.720p.BluRay.x264-WiKi.mkv,7898122818,2025-08-28T01:02:19,movie,1280x720,h264,6337.472,9970 @@ -3469,6 +3469,22 @@ path,filename,size_bytes,modified_timestamp,category,resolution,codec,duration_s /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第05話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2668262246,2024-11-04T11:27:48,series,1920x1080,h264,2799.999,7623 /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第11話 END 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,3979194519,2024-11-04T11:40:55,series,1920x1080,h264,4152.895,7665 /mnt/Downloads/series/ロングバケーション Complete 1080p friDay WEB-DL H264 AAC-e@DoA/ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,ロングバケーション 第02話 1080p friDay WEB-DL H264 AAC-e@DoA.mkv,2668983508,2024-11-04T11:20:28,series,1920x1080,h264,2799.999,7625 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E08.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E08.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1798772511,2026-02-13T13:48:45,series,1920x960,hevc,3803.84,3783 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E09.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E09.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1407236434,2026-02-13T13:49:06,series,1920x960,hevc,2969.408,3791 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E10.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E10.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1653738958,2026-02-13T13:49:31,series,1920x960,hevc,3456.48,3827 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E06.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E06.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1653532654,2026-02-13T13:48:03,series,1920x960,hevc,3437.664,3848 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E07.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E07.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1885292179,2026-02-13T13:48:26,series,1920x960,hevc,3881.92,3885 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E11.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E11.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1825045002,2026-02-13T13:49:52,series,1920x960,hevc,3819.104,3822 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E05.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E05.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1754877803,2026-02-13T13:47:42,series,1920x960,hevc,3702.913,3791 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E13.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E13.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1837918178,2026-02-13T13:50:32,series,1920x960,hevc,3743.392,3927 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E12.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E12.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1698962042,2026-02-13T13:50:13,series,1920x960,hevc,3560.608,3817 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E04.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E04.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1731875232,2026-02-13T13:47:21,series,1920x960,hevc,3577.6,3872 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E01.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E01.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1642198530,2026-02-13T13:46:12,series,1920x960,hevc,3453.472,3804 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E16.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E16.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,2449083931,2026-02-13T13:51:27,series,1920x960,hevc,5134.176,3816 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E14.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E14.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1870321249,2026-02-13T13:50:48,series,1920x960,hevc,3924.96,3812 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E02.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E02.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1527611794,2026-02-13T13:46:34,series,1920x960,hevc,3245.28,3765 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E03.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E03.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1813565311,2026-02-13T13:46:59,series,1920x960,hevc,3793.824,3824 +/mnt/Downloads/series/苦尽柑来遇见你S01.When.Life.Gives.You.Tangerines.2025.1080p.NF.WEBrip.x265.AC3£cXcY@FRDS/When.Life.Gives.You.Tangerines.E15.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,When.Life.Gives.You.Tangerines.E15.2025.1080p.NF.WEBrip.x265.10bit.AC3£cXcY@FRDS.mkv,1996773867,2026-02-13T13:51:09,series,1920x960,hevc,4178.4,3823 /mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,[公益律师].Pro.Bono.2025.S01E08.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,3097440685,2026-01-17T12:14:11,series,1920x1080,h264,4856.918,5101 /mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E12.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,[公益律师].Pro.Bono.2025.S01E12.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2940702325,2026-01-17T12:15:57,series,1920x1080,h264,4611.926,5101 /mnt/Downloads/series/[公益律师].Pro.Bono.2025.S01.Complete.1080p.NF.WEB-DL.H264.AAC-UBWEB/[公益律师].Pro.Bono.2025.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,[公益律师].Pro.Bono.2025.S01E06.1080p.NF.WEB-DL.H264.AAC-UBWEB.mkv,2752522398,2026-01-17T12:13:15,series,1920x1080,h264,4319.616,5097 diff --git a/plans/2026-04-01-CODE_REFACTOR_REFINEMENT_PLAN-v1.md b/plans/2026-04-01-CODE_REFACTOR_REFINEMENT_PLAN-v1.md new file mode 100644 index 0000000..8b1d0e7 --- /dev/null +++ b/plans/2026-04-01-CODE_REFACTOR_REFINEMENT_PLAN-v1.md @@ -0,0 +1,127 @@ +# Refactor and Refinement Execution Plan + +## Objective + +Refactor the current `vlm` codebase to reduce structural technical debt while preserving the existing safety-first pipeline behavior. The plan focuses on improving CLI maintainability, strengthening stage boundaries, clarifying state semantics, enabling provider and strategy extensibility, and increasing testability and observability without changing the user-visible safety guarantees. + +## Context and Scope + +This plan is based on the verified review findings in the code analysis report, especially the structural issues around CLI size and repetitive error handling, weak dict/JSON contracts between stages, analyze-phase ordering coupling, duplicated sample-path rules, filesystem-dependent plan generation, configuration semantic overlap, review-state ambiguity, provider hard-coding, and the lack of unified state and strategy abstractions. Key source areas include `src/vlm/cli.py:158-603`, `src/vlm/commands/parse.py:66-155`, `src/vlm/io.py:85-249`, `src/vlm/commands/analyze.py:41-55`, `src/vlm/planner.py:34-40`, `src/vlm/planner.py:43-76`, `src/vlm/planner.py:354-358`, `src/vlm/enrichment.py:203-225`, `src/vlm/state.py:22-205`, `src/vlm/models.py:46-53`, and `src/vlm/models.py:79-85`. + +## Assumptions + +- Preserve the current pipeline order and safety behavior unless a change explicitly improves safety or determinism. +- Avoid introducing breaking changes to the CLI surface in the first refactor wave. +- Prefer incremental, reviewable changes that can ship independently. +- Keep the artifact-driven workflow as the default, while making room for future hybrid or streaming modes. +- Treat documentation, tests, and observability updates as first-class deliverables rather than afterthoughts. + +## Implementation Plan + +### Phase 0: Baseline, guardrails, and dependency mapping + +- [ ] Capture the current behavior baseline for the full workflow, including `scan`, `parse`, `enrich`, `analyze`, `plan`, and `execute`, so every later refactor can be compared against the existing safety model. This is necessary because the codebase relies on many cross-stage assumptions and the review identified several fragile boundaries. +- [ ] Map the exact data flow between artifact files and in-memory models for `inventory`, `identities`, `analysis`, and `plan` outputs. This reduces the chance of accidental schema drift while refactoring the stage contracts. +- [ ] Identify the minimum set of high-value integration paths to protect first: CLI startup, parse/enrich transition, analyze pairing, plan generation, execute rollback, and quarantine handling. These paths correspond to the highest-risk areas in the review. + +### Phase 1: CLI decomposition and unified error handling + +- [ ] Extract a shared command execution/error-wrapping layer from `src/vlm/cli.py:158-603` so repeated `try/except + echo + logger + exit` logic is centralized. This is needed to stop the CLI file from continuing to grow and to keep error behavior consistent. +- [ ] Split non-core commands and support workflows into smaller command modules and keep the CLI module focused on registration and dispatch. This reduces the blast radius of future command additions and improves discoverability. +- [ ] Standardize CLI-level error presentation so file, JSON, validation, and OS errors all follow one predictable response shape. This improves user experience and avoids duplicated branching. +- [x] Update the CLI workflow description to match the actual supported flow, including `enrich`, so the user-facing guidance reflects the true pipeline. This is a low-cost refinement that removes user confusion. + +### Phase 2: Stronger stage contracts and typed intermediate models + +- [ ] Replace the most fragile dict-based stage boundaries with typed records or `TypedDict` models, starting with parse output and the io conversion layer in `src/vlm/commands/parse.py:66-155` and `src/vlm/io.py:85-249`. This directly addresses schema drift and makes refactors safer. +- [x] Define explicit schemas for `identities.json`, `analysis.json`, and `plan.json`, and validate them on load/save. This adds a durable guardrail against silent data-shape changes. +- [ ] Align enrichment output mutation with typed contracts so fields like `display_title`, `needs_review`, and review metadata have a single authoritative shape. This prevents inconsistent stage assumptions. +- [x] Refactor `identities_to_analysis_input()` so it returns explicit identity-file pairs instead of relying on positional slicing and zipping in `src/vlm/commands/analyze.py:41-55`. This removes the fragile ordering dependency identified in the review. + +### Phase 3: Shared rule extraction and deterministic planning + +- [x] Extract the duplicated sample-path rule from `src/vlm/planner.py:34-40`, `src/vlm/duplicate_resolve.py:11-16`, and `src/vlm/plan_review.py:12-16` into a single shared helper. This reduces duplication and guarantees consistent classification behavior. +- [x] Separate logical plan generation from live environment validation so plan output becomes reproducible and execute-time validation becomes an explicit pass. This addresses the filesystem-state coupling in `src/vlm/planner.py:43-76` and `src/vlm/planner.py:354-358`. +- [x] Tag any environment-derived metadata in plan artifacts as snapshots rather than intrinsic plan facts. This makes the distinction between logical intent and runtime validation clear. +- [ ] Review plan-related metadata and operation structures so they can support deterministic comparisons across runs. This is important for review tooling and regression analysis. + +### Phase 4: Unified state model and review semantics + +- [ ] Introduce a centralized state model that clearly separates processing, review, execution, and quarantine semantics. This directly addresses the spread of state concepts across `src/vlm/state.py:22-205`, `src/vlm/models.py:46-53`, and `src/vlm/models.py:79-85`. +- [ ] Make `needs_review` a derived or secondary field rather than the main source of truth, and ensure `review_status` and `review_reason` are the primary review semantics. This removes the current overlap and reduces future workflow ambiguity. +- [ ] Align execution and rollback state transitions with the centralized model so success, failure, rollback, and restore paths are all represented consistently. +- [ ] Review persisted state files and transition logic for atomicity and consistency after the model changes are introduced. + +### Phase 5: Provider extensibility and strategy abstractions + +- [ ] Replace hard-coded provider assembly in `src/vlm/enrichment.py:203-225` with a registry or plugin-style registration mechanism. This enables new metadata sources without requiring direct edits to the core enrichment orchestration. +- [ ] Introduce a strategy layer for naming, conflict handling, and keep/delete decisions so `Config` is no longer the only mechanism for behavior variation. This addresses the current static-config limitation in `src/vlm/config.py:13-148`. +- [ ] Refactor media-type and operation-type dispatch toward registered handlers rather than expanding `if/elif` chains in the parser and executor. This makes future media types and operation kinds easier to add. +- [ ] Keep the default built-in behavior intact while allowing new strategies to be added incrementally. This limits regression risk while improving extensibility. + +### Phase 6: Error taxonomy and observability + +- [ ] Define a small domain exception hierarchy for enrichment, planning, and execution safety failures, and update command-layer handling to use those typed errors. This makes failure handling more precise than broad exception catching. +- [ ] Add structured logging or event fields for high-value workflow events such as cache hits, quarantine operations, rollback actions, and plan conflicts. This improves supportability and analysis quality. +- [ ] Add stage-level timing and outcome metrics so long-running operations can be measured consistently. This is especially useful once the pipeline grows beyond small libraries. + +### Phase 7: Testing expansion and validation coverage + +- [ ] Add integration tests for cross-stage transitions, especially parse→enrich, analyze→plan, and plan→execute. These paths need stronger guarantees than isolated unit tests. +- [ ] Add end-to-end tests that run a complete safe workflow against a controlled fixture library, including rollback and quarantine behavior. This validates the pipeline as a whole rather than one module at a time. +- [ ] Add performance-oriented checks or benchmark fixtures for larger datasets so future changes can be evaluated against scaling regressions. +- [ ] Extend property-based coverage where the new typed contracts or state transitions create meaningful invariants. + +### Phase 8: UX refinement and future-mode readiness + +- [ ] Refresh help text and workflow guidance after the CLI and pipeline changes are stable, so the documented flow stays aligned with actual behavior. +- [ ] Evaluate whether a hybrid execution mode or a guided interactive mode should be introduced once the state model and contracts are stable. This is a future-facing refinement to improve usability without sacrificing safety. +- [ ] Keep the artifact-first mode as the default until the alternative execution modes have matching safety guarantees and test coverage. + +## Verification Criteria + +- [ ] CLI startup and command registration still work, and repeated command-level error handling is no longer duplicated across the main CLI file. +- [x] Stage artifact schemas are explicitly validated, and malformed inputs fail early with clear errors. +- [x] Analyze no longer depends on positional assumptions between identities and video files. +- [x] Sample-path classification produces one consistent result across planner, duplicate resolution, and review flows. +- [x] Plan generation is reproducible for the same logical inputs, with live filesystem checks clearly separated as validation snapshots. +- [ ] Review state semantics are no longer ambiguous, and `review_status` is the primary review source of truth. +- [ ] Provider registration can be extended without editing the core orchestration logic. +- [ ] Integration and E2E coverage exists for the main safe workflow and rollback/quarantine scenarios. +- [ ] Structured logs or metrics expose workflow health and failure patterns. +- [ ] The default user-visible pipeline still preserves the safety-first execution model. + +## Potential Risks and Mitigations + +1. **Risk: Refactor scope expands faster than the code can be stabilized** + Mitigation: Keep the work split into independently shippable phases and require the baseline behavior to remain intact after each phase. + +2. **Risk: Typed contracts introduce temporary friction in serialization/deserialization code** + Mitigation: Introduce schema validation and typed records incrementally, starting with the highest-risk artifacts. + +3. **Risk: State model changes cascade through planner, executor, and review flows** + Mitigation: Centralize the new model first, then migrate consumers one by one while keeping compatibility adapters where needed. + +4. **Risk: Provider and strategy abstraction can become too generic too early** + Mitigation: Start with the current built-in cases as default registrations before allowing external extensibility. + +5. **Risk: New tests may be slow or hard to maintain if they overuse large fixtures** + Mitigation: Prefer focused fixtures for unit/integration coverage and reserve large datasets for targeted performance checks. + +## Alternative Approaches + +1. **Incremental refactor first**: Keep the current artifact-first architecture and only extract the most painful seams now. Trade-off: lowest regression risk, but slower progress on deeper extensibility issues. +2. **Boundary-first refactor**: Prioritize typed contracts, state model, and deterministic planning before provider and strategy work. Trade-off: better long-term clarity, but requires more cross-module updates early. +3. **Platform-style refactor**: Introduce registries, strategies, and structured observability as a broader platform layer. Trade-off: highest flexibility, but the largest immediate complexity increase. + +## Status Tracking + +- **Not Started**: Phase 0 baseline capture and dependency mapping +- **Partially Completed**: Phase 1 CLI decomposition and unified error handling +- **Partially Completed**: Phase 2 stronger stage contracts and typed intermediate models +- **Partially Completed**: Phase 3 shared rule extraction and deterministic planning +- **Not Started**: Phase 4 unified state model and review semantics +- **Not Started**: Phase 5 provider extensibility and strategy abstractions +- **Not Started**: Phase 6 error taxonomy and observability +- **Not Started**: Phase 7 testing expansion and validation coverage +- **Not Started**: Phase 8 UX refinement and future-mode readiness diff --git a/pyproject.toml b/pyproject.toml index edd5bf3..187d390 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,6 +13,10 @@ dependencies = [ dev = [ "pytest>=7.4.0", "hypothesis>=6.82.0", + "textual>=0.47.0", +] +tui = [ + "textual>=0.47.0", ] [project.scripts] diff --git a/src/vlm/cli.py b/src/vlm/cli.py index 2d60954..9422d05 100644 --- a/src/vlm/cli.py +++ b/src/vlm/cli.py @@ -84,6 +84,11 @@ def _command_error(ctx: CLIContext, user_message: str, logger_message: str, *, e raise SystemExit(1) +def _review_plan_tui_streams_ok() -> bool: + """Return True if stdin/stdout appear to be an interactive terminal.""" + return sys.stdin.isatty() and sys.stdout.isatty() + + def _load_or_create_config(config: Path) -> Config: """Load configuration from disk or create a default config file.""" if config.exists(): @@ -527,6 +532,12 @@ def plan(ctx: CLIContext, input: Path, output: Path, analysis: Path | None): default=False, help='Show all high-risk operations in console preview' ) +@click.option( + '--tui', + is_flag=True, + default=False, + help='Interactive Textual UI (requires: uv pip install -e ".[tui]")' +) @pass_context def review_plan_cmd( ctx: CLIContext, @@ -536,6 +547,7 @@ def review_plan_cmd( episode_threshold: int, preview_limit: int, show_all: bool, + tui: bool, ): """Review a plan and export high-risk operations for manual confirmation.""" from vlm.planner import load_plan @@ -552,6 +564,19 @@ def review_plan_cmd( click.echo("Error: --preview-limit must be >= 1", err=True) sys.exit(1) + if tui: + if not _review_plan_tui_streams_ok(): + click.echo("Error: --tui requires an interactive terminal (TTY)", err=True) + sys.exit(1) + try: + from textual.app import App as _TextualApp # noqa: F401 + except ImportError: + click.echo( + 'Error: Textual is not installed. Install with: uv pip install -e ".[tui]"', + err=True, + ) + sys.exit(1) + click.echo(f"Loading plan: {input}") execution_plan = load_plan(input) rows, counters = review_plan( @@ -560,6 +585,30 @@ def review_plan_cmd( episode_threshold=episode_threshold, ) + if tui: + from vlm.review_tui import ReviewTUIContext, run_plan_review_tui + + tui_ctx = ReviewTUIContext( + rows=rows, + counters=counters, + library_root=ctx.config.library_root, + output_csv=output, + plan_input=input, + summary_text=preferred_plan_summary(execution_plan), + ) + rc = run_plan_review_tui(tui_ctx) + if rc != 0: + click.echo("Plan review aborted (no CSV written).", err=True) + sys.exit(rc) + click.echo(f"Saved manual review CSV to: {output}") + logger.info( + "Plan review TUI completed: total=%s high_risk=%s output=%s", + counters["total_operations"], + counters["high_risk_operations"], + output, + ) + return + save_review_csv(rows, output) click.echo() diff --git a/src/vlm/commands/analyze.py b/src/vlm/commands/analyze.py index faf0cad..b8c3ffe 100644 --- a/src/vlm/commands/analyze.py +++ b/src/vlm/commands/analyze.py @@ -13,7 +13,13 @@ from vlm.io import ( load_inventory_csv, save_analysis_json, ) -from vlm.models import MovieIdentity, SeriesIdentity +from vlm.models import ( + AnalysisCompletenessRecord, + AnalysisDuplicateIdentityRecord, + AnalysisDuplicateRecord, + MovieIdentity, + SeriesIdentity, +) def analyze_cmd( @@ -39,19 +45,16 @@ def analyze_cmd( click.echo() inventory_files = load_inventory_csv(inventory) if inventory else None - movie_identities, series_identities, video_files = identities_to_analysis_input( + movie_pairs, series_pairs = identities_to_analysis_input( identities_data, inventory_files=inventory_files ) + series_identities = [identity for identity, _ in series_pairs] click.echo("Analyzing series completeness...") completeness_results = analyze_series_completeness(series_identities) click.echo("Detecting duplicates...") - n_movies = len(movie_identities) - identity_file_pairs = ( - list(zip(movie_identities, video_files[:n_movies])) - + list(zip(series_identities, video_files[n_movies:])) - ) + identity_file_pairs = movie_pairs + series_pairs duplicate_groups = detect_duplicates(identity_file_pairs) click.echo() @@ -71,7 +74,7 @@ def analyze_cmd( click.echo(f"Saving analysis results to: {output}") output.parent.mkdir(parents=True, exist_ok=True) - completeness_list = [ + completeness_list: list[AnalysisCompletenessRecord] = [ { "series_title": c.series_title, "season": c.season, @@ -80,14 +83,21 @@ def analyze_cmd( } for c in completeness_results ] - duplicates_list = [] + duplicates_list: list[AnalysisDuplicateRecord] = [] for d in duplicate_groups: if isinstance(d.identity, MovieIdentity): - identity_info = {"type": "movie", "title": d.identity.title, "year": d.identity.year} + identity_info: AnalysisDuplicateIdentityRecord = { + "type": "movie", + "title": d.identity.title, + "year": d.identity.year, + "season": None, + "episodes": [], + } else: identity_info = { "type": "series", "title": d.identity.title, + "year": None, "season": d.identity.season, "episodes": d.identity.episodes, } diff --git a/src/vlm/commands/parse.py b/src/vlm/commands/parse.py index cbdaab6..73a97eb 100644 --- a/src/vlm/commands/parse.py +++ b/src/vlm/commands/parse.py @@ -9,6 +9,7 @@ import click from vlm.context import CLIContext from vlm.io import load_inventory_csv, save_identities_json +from vlm.models import IdentityRecord, MovieIdentityRecord, ParsedIdentitiesJSON, SeriesIdentityRecord, VideoFile from vlm.parser import parse_movie, parse_series from vlm.utils import utc_now @@ -20,7 +21,7 @@ def parse_cmd(ctx: CLIContext, input: Path, output: Path, inventory: Optional[Pa click.echo(f"Parsing identities from: {input}") - path_to_metadata: dict[str, object] = {} + path_to_metadata: dict[str, VideoFile] = {} if inventory: click.echo(f"Loading video metadata from: {inventory}") inventory_files = load_inventory_csv(inventory) @@ -30,7 +31,7 @@ def parse_cmd(ctx: CLIContext, input: Path, output: Path, inventory: Optional[Pa click.echo() inventory_files = load_inventory_csv(input) - video_files = [ + video_files: list[dict[str, str]] = [ { "path": str(vf.path), "filename": vf.filename, @@ -42,10 +43,10 @@ def parse_cmd(ctx: CLIContext, input: Path, output: Path, inventory: Optional[Pa click.echo(f"Loaded {len(video_files)} files from inventory") click.echo() - movie_identities: list[dict] = [] - series_identities: list[dict] = [] - anime_files: list[dict] = [] - other_files: list[dict] = [] + movie_identities: list[MovieIdentityRecord] = [] + series_identities: list[SeriesIdentityRecord] = [] + anime_files: list[IdentityRecord] = [] + other_files: list[IdentityRecord] = [] def get_video_metadata(file_path: str) -> dict: """Extract video metadata from inventory if available.""" @@ -141,7 +142,7 @@ def parse_cmd(ctx: CLIContext, input: Path, output: Path, inventory: Optional[Pa generation_timestamp = utc_now().strftime("%Y-%m-%dT%H:%M:%S") schema_version = "2.0" if path_to_metadata else "1.0" - identities_data = { + identities_data: ParsedIdentitiesJSON = { "vlm_schema_version": schema_version, "metadata": { "generated": generation_timestamp, diff --git a/src/vlm/commands/plan.py b/src/vlm/commands/plan.py index b38748d..19522a3 100644 --- a/src/vlm/commands/plan.py +++ b/src/vlm/commands/plan.py @@ -82,9 +82,12 @@ def plan_cmd(ctx: CLIContext, input: Path, output: Path, analysis: Optional[Path click.echo(" Review the plan file for details on conflicting operations.") # Check for directory warnings - directory_warning = execution_plan.metadata.get("directory_warning", False) + validation_snapshot = execution_plan.metadata.get("validation_snapshot", {}) + if not isinstance(validation_snapshot, dict): + validation_snapshot = {} + directory_warning = bool(validation_snapshot.get("directory_warning", False)) if directory_warning: - emptied_dirs = execution_plan.metadata.get("emptied_directories", []) + emptied_dirs = validation_snapshot.get("emptied_directories", []) click.echo() click.echo(f" ⚠️ Directory preservation warning: {len(emptied_dirs)} directories will be emptied") click.echo(" These directories will be preserved but may be empty after execution.") diff --git a/src/vlm/duplicate_resolve.py b/src/vlm/duplicate_resolve.py index d62aa34..f19826e 100644 --- a/src/vlm/duplicate_resolve.py +++ b/src/vlm/duplicate_resolve.py @@ -6,14 +6,7 @@ from pathlib import Path from typing import Optional, Union from vlm.models import MovieIdentity, SeriesIdentity - - -def _is_sample_path(path: Path) -> bool: - """Identify likely sample clips by path component or filename token.""" - parts = [part.casefold() for part in path.parts] - if "sample" in parts: - return True - return bool(re.search(r"(^|[\s._-])sample($|[\s._-])", path.stem.casefold())) +from vlm.utils import is_sample_path def choose_keep_index( @@ -125,7 +118,7 @@ def _by_quality_index( def key(idx_item: tuple[int, tuple[Path, Union[MovieIdentity, SeriesIdentity]]]) -> tuple: idx, (path, _) = idx_item qc = quality_comparison[idx] if idx < len(quality_comparison) else {} - is_sample = _is_sample_path(path) + is_sample = is_sample_path(path) return (is_sample, *quality_key(path, qc, idx)) indexed = list(enumerate(items)) @@ -156,7 +149,7 @@ def _by_reputation_index( has_rep = identity.reputation_score is not None score = identity.reputation_score if identity.reputation_score is not None else -1.0 votes = identity.reputation_votes if identity.reputation_votes is not None else -1 - is_sample = _is_sample_path(path) + is_sample = is_sample_path(path) # Prefer non-sample, then reputation, then better quality, then lower index. return (is_sample, not has_rep, -score, -votes, *quality_key(path, qc, idx)) @@ -199,7 +192,7 @@ def _by_reputation_quality_time_index( score = identity.reputation_score if identity.reputation_score is not None else -1.0 votes = identity.reputation_votes if identity.reputation_votes is not None else -1 modified_ts = _parse_modified_timestamp(qc.get("modified_timestamp")) - is_sample = _is_sample_path(path) + is_sample = is_sample_path(path) return ( is_sample, not has_rep, diff --git a/src/vlm/io.py b/src/vlm/io.py index c9195a0..229b9b9 100644 --- a/src/vlm/io.py +++ b/src/vlm/io.py @@ -6,7 +6,17 @@ import json from pathlib import Path from typing import Union -from vlm.models import MovieIdentity, SeriesIdentity, VideoFile +from vlm.models import ( + AnalysisJSON, + AnalysisCompletenessRecord, + AnalysisDuplicateRecord, + MovieIdentity, + MovieIdentityRecord, + ParsedIdentitiesJSON, + SeriesIdentity, + SeriesIdentityRecord, + VideoFile, +) from vlm.utils import utc_now # Re-export scanner CSV functions so CLI and others use a single I/O entry point @@ -39,28 +49,230 @@ def save_json_file(data: dict, path: Path) -> None: json.dump(data, f, indent=2, ensure_ascii=False) -def load_analysis_json(path: Path) -> dict: +def _ensure_dict(value: object, label: str) -> dict: + if not isinstance(value, dict): + raise ValueError(f"{label} must be an object") + return value + + +def _ensure_list(value: object, label: str) -> list: + if not isinstance(value, list): + raise ValueError(f"{label} must be a list") + return value + + +def _ensure_str(value: object, label: str) -> str: + if not isinstance(value, str): + raise ValueError(f"{label} must be a string") + return value + + +def _ensure_bool(value: object, label: str) -> bool: + if not isinstance(value, bool): + raise ValueError(f"{label} must be a boolean") + return value + + +def _ensure_int(value: object, label: str, *, allow_none: bool = False) -> int | None: + if value is None and allow_none: + return None + if isinstance(value, bool) or not isinstance(value, int): + raise ValueError(f"{label} must be an integer") + return value + + +def _ensure_float(value: object, label: str, *, allow_none: bool = False) -> float | None: + if value is None and allow_none: + return None + if isinstance(value, bool) or not isinstance(value, (int, float)): + raise ValueError(f"{label} must be a number") + return float(value) + + +def _ensure_string_dict(value: object, label: str) -> dict[str, str]: + mapping = _ensure_dict(value, label) + for key, item in mapping.items(): + if not isinstance(key, str) or not isinstance(item, str): + raise ValueError(f"{label} must map strings to strings") + return mapping # type: ignore[return-value] + + +def _validate_video_metadata(record: dict, label: str) -> None: + if "video_metadata" not in record: + return + metadata = _ensure_dict(record["video_metadata"], f"{label}.video_metadata") + if "size_bytes" in metadata: + _ensure_int(metadata["size_bytes"], f"{label}.video_metadata.size_bytes") + if "modified_timestamp" in metadata: + _ensure_str(metadata["modified_timestamp"], f"{label}.video_metadata.modified_timestamp") + if "resolution" in metadata and metadata["resolution"] is not None: + _ensure_str(metadata["resolution"], f"{label}.video_metadata.resolution") + if "codec" in metadata and metadata["codec"] is not None: + _ensure_str(metadata["codec"], f"{label}.video_metadata.codec") + if "duration_seconds" in metadata: + _ensure_float( + metadata["duration_seconds"], + f"{label}.video_metadata.duration_seconds", + allow_none=True, + ) + if "bitrate_kbps" in metadata: + _ensure_int( + metadata["bitrate_kbps"], + f"{label}.video_metadata.bitrate_kbps", + allow_none=True, + ) + + +def _validate_identity_record(record: object, *, label: str, expect_kind: str | None = None) -> dict: + mapping = _ensure_dict(record, label) + _ensure_str(mapping.get("path"), f"{label}.path") + _ensure_str(mapping.get("filename"), f"{label}.filename") + _ensure_str(mapping.get("category"), f"{label}.category") + + if "review_status" in mapping: + review_status = _ensure_str(mapping["review_status"], f"{label}.review_status") + if review_status not in {"pending", "approved", "rejected"}: + raise ValueError(f"{label}.review_status must be one of pending, approved, rejected") + + if expect_kind in {"movie", "series"}: + _ensure_str(mapping.get("title"), f"{label}.title") + _ensure_float(mapping.get("confidence"), f"{label}.confidence") + _ensure_bool(mapping.get("needs_review"), f"{label}.needs_review") + + if expect_kind == "movie": + _ensure_int(mapping.get("year"), f"{label}.year", allow_none=True) + elif expect_kind == "series": + _ensure_int(mapping.get("season"), f"{label}.season", allow_none=True) + episodes = _ensure_list(mapping.get("episodes"), f"{label}.episodes") + for idx, episode in enumerate(episodes): + _ensure_int(episode, f"{label}.episodes[{idx}]") + + if "provider_metadata" in mapping: + _ensure_string_dict(mapping["provider_metadata"], f"{label}.provider_metadata") + + _validate_video_metadata(mapping, label) + return mapping + + +def _validate_parsed_identities_json(data: object) -> ParsedIdentitiesJSON: + mapping = _ensure_dict(data, "identities JSON") + if "vlm_schema_version" in mapping and mapping["vlm_schema_version"] is not None: + _ensure_str(mapping["vlm_schema_version"], "identities JSON.vlm_schema_version") + _ensure_dict(mapping.get("metadata"), "identities JSON.metadata") + + movies = _ensure_list(mapping.get("movies", []), "identities JSON.movies") + series = _ensure_list(mapping.get("series", []), "identities JSON.series") + anime = _ensure_list(mapping.get("anime", []), "identities JSON.anime") + other = _ensure_list(mapping.get("other", []), "identities JSON.other") + + mapping["movies"] = [ + _validate_identity_record(movie, label=f"identities JSON.movies[{idx}]", expect_kind="movie") + for idx, movie in enumerate(movies) + ] + mapping["series"] = [ + _validate_identity_record(item, label=f"identities JSON.series[{idx}]", expect_kind="series") + for idx, item in enumerate(series) + ] + mapping["anime"] = [ + _validate_identity_record(item, label=f"identities JSON.anime[{idx}]", expect_kind=None) + for idx, item in enumerate(anime) + ] + mapping["other"] = [ + _validate_identity_record(item, label=f"identities JSON.other[{idx}]", expect_kind=None) + for idx, item in enumerate(other) + ] + return mapping # type: ignore[return-value] + + +def _validate_analysis_json(data: object) -> AnalysisJSON: + mapping = _ensure_dict(data, "analysis JSON") + if not isinstance(mapping.get("vlm_schema_version"), str): + mapping["vlm_schema_version"] = "1.0" + _ensure_dict(mapping.get("metadata"), "analysis JSON.metadata") + + completeness = _ensure_list(mapping.get("completeness", []), "analysis JSON.completeness") + duplicates = _ensure_list(mapping.get("duplicates", []), "analysis JSON.duplicates") + + for idx, item in enumerate(completeness): + completeness_item = _ensure_dict(item, f"analysis JSON.completeness[{idx}]") + _ensure_str(completeness_item.get("series_title"), f"analysis JSON.completeness[{idx}].series_title") + _ensure_int(completeness_item.get("season"), f"analysis JSON.completeness[{idx}].season") + for field_name in ("episodes_found", "episodes_missing"): + field_value = _ensure_list(completeness_item.get(field_name), f"analysis JSON.completeness[{idx}].{field_name}") + for episode_idx, episode in enumerate(field_value): + _ensure_int(episode, f"analysis JSON.completeness[{idx}].{field_name}[{episode_idx}]") + + for idx, item in enumerate(duplicates): + duplicate_item = _ensure_dict(item, f"analysis JSON.duplicates[{idx}]") + identity = _ensure_dict(duplicate_item.get("identity"), f"analysis JSON.duplicates[{idx}].identity") + _ensure_str(identity.get("type"), f"analysis JSON.duplicates[{idx}].identity.type") + _ensure_str(identity.get("title"), f"analysis JSON.duplicates[{idx}].identity.title") + _ensure_int(identity.get("year"), f"analysis JSON.duplicates[{idx}].identity.year", allow_none=True) + _ensure_int(identity.get("season"), f"analysis JSON.duplicates[{idx}].identity.season", allow_none=True) + episodes = _ensure_list(identity.get("episodes", []), f"analysis JSON.duplicates[{idx}].identity.episodes") + for episode_idx, episode in enumerate(episodes): + _ensure_int(episode, f"analysis JSON.duplicates[{idx}].identity.episodes[{episode_idx}]") + files = _ensure_list(duplicate_item.get("files", []), f"analysis JSON.duplicates[{idx}].files") + for file_idx, file_path in enumerate(files): + _ensure_str(file_path, f"analysis JSON.duplicates[{idx}].files[{file_idx}]") + quality = _ensure_list(duplicate_item.get("quality_comparison", []), f"analysis JSON.duplicates[{idx}].quality_comparison") + for quality_idx, q_item in enumerate(quality): + _ensure_dict(q_item, f"analysis JSON.duplicates[{idx}].quality_comparison[{quality_idx}]") + + return mapping # type: ignore[return-value] + + +def validate_plan_json(data: object) -> dict: + """Validate the on-disk execution plan schema.""" + mapping = _ensure_dict(data, "plan JSON") + _ensure_str(mapping.get("vlm_schema_version"), "plan JSON.vlm_schema_version") + _ensure_str(mapping.get("plan_id"), "plan JSON.plan_id") + _ensure_str(mapping.get("created_at"), "plan JSON.created_at") + _ensure_dict(mapping.get("summary"), "plan JSON.summary") + if "summary_by_reason" in mapping: + _ensure_dict(mapping["summary_by_reason"], "plan JSON.summary_by_reason") + if "human_summary" in mapping: + _ensure_str(mapping["human_summary"], "plan JSON.human_summary") + if "metadata" in mapping: + _ensure_dict(mapping["metadata"], "plan JSON.metadata") + + operations = _ensure_list(mapping.get("operations", []), "plan JSON.operations") + for idx, item in enumerate(operations): + operation = _ensure_dict(item, f"plan JSON.operations[{idx}]") + _ensure_str(operation.get("operation_type"), f"plan JSON.operations[{idx}].operation_type") + _ensure_str(operation.get("source_path"), f"plan JSON.operations[{idx}].source_path") + if operation.get("destination_path") is not None: + _ensure_str(operation.get("destination_path"), f"plan JSON.operations[{idx}].destination_path") + _ensure_str(operation.get("reason"), f"plan JSON.operations[{idx}].reason") + _ensure_bool(operation.get("has_conflict"), f"plan JSON.operations[{idx}].has_conflict") + if "conflict_reason" in operation and operation["conflict_reason"] is not None: + _ensure_str(operation["conflict_reason"], f"plan JSON.operations[{idx}].conflict_reason") + + return mapping + + +def load_analysis_json(path: Path) -> AnalysisJSON: """Load analysis result from JSON file (metadata, completeness, duplicates). Caller should check file existence and handle missing/invalid keys. """ - return load_json_file(path) + return _validate_analysis_json(load_json_file(path)) -def load_identities_json(path: Path) -> dict: +def load_identities_json(path: Path) -> ParsedIdentitiesJSON: """Load identities from JSON file.""" - return load_json_file(path) + return _validate_parsed_identities_json(load_json_file(path)) -def save_identities_json(data: dict, path: Path) -> None: +def save_identities_json(data: ParsedIdentitiesJSON, path: Path) -> None: """Save identities dict to JSON file.""" - save_json_file(data, path) + save_json_file(_validate_parsed_identities_json(data), path) def save_analysis_json( *, - completeness: list[dict], - duplicates: list[dict], + completeness: list[AnalysisCompletenessRecord], + duplicates: list[AnalysisDuplicateRecord], source_identities: Path, total_movies: int, total_series: int, @@ -68,7 +280,7 @@ def save_analysis_json( ) -> None: """Save analysis result JSON using the canonical schema.""" generation_timestamp = utc_now().strftime("%Y-%m-%dT%H:%M:%S") - analysis_data = { + analysis_data: AnalysisJSON = { "vlm_schema_version": "1.0", "metadata": { "generated": generation_timestamp, @@ -79,10 +291,10 @@ def save_analysis_json( "completeness": completeness, "duplicates": duplicates, } - save_json_file(analysis_data, output) + save_json_file(_validate_analysis_json(analysis_data), output) -def _video_file_from_record(record: dict) -> VideoFile: +def _video_file_from_record(record: MovieIdentityRecord | SeriesIdentityRecord) -> VideoFile: """Build a VideoFile from an identities record. If the record contains embedded video_metadata (v2 schema), use it. @@ -111,7 +323,16 @@ def _video_file_from_record(record: dict) -> VideoFile: ) -def _movie_identity_from_record(m: dict) -> MovieIdentity: +def _video_file_from_inventory( + record: MovieIdentityRecord | SeriesIdentityRecord, + path_to_inventory: dict[str, VideoFile], +) -> VideoFile: + """Build a VideoFile and prefer matching inventory metadata when available.""" + video_file = _video_file_from_record(record) + return path_to_inventory.get(str(video_file.path), video_file) + + +def _movie_identity_from_record(m: MovieIdentityRecord) -> MovieIdentity: """Build MovieIdentity from identities JSON record.""" is_approved = m.get("review_status") == "approved" return MovieIdentity( @@ -133,7 +354,7 @@ def _movie_identity_from_record(m: dict) -> MovieIdentity: ) -def _series_identity_from_record(s: dict) -> SeriesIdentity: +def _series_identity_from_record(s: SeriesIdentityRecord) -> SeriesIdentity: """Build SeriesIdentity from identities JSON record.""" is_approved = s.get("review_status") == "approved" return SeriesIdentity( @@ -157,7 +378,7 @@ def _series_identity_from_record(s: dict) -> SeriesIdentity: def identities_to_plan_input( - data: dict, + data: ParsedIdentitiesJSON, ) -> list[tuple[VideoFile, Union[MovieIdentity, SeriesIdentity, None]]]: """Convert identities JSON dict to list of (VideoFile, Identity) for plan generator.""" result: list[tuple[VideoFile, Union[MovieIdentity, SeriesIdentity, None]]] = [] @@ -179,71 +400,23 @@ def identities_to_plan_input( def identities_to_analysis_input( - data: dict, + data: ParsedIdentitiesJSON, inventory_files: list[VideoFile] | None = None, -) -> tuple[list[MovieIdentity], list[SeriesIdentity], list[VideoFile]]: - """Convert identities JSON dict to analysis inputs; optionally merge inventory metadata by path.""" +) -> tuple[list[tuple[MovieIdentity, VideoFile]], list[tuple[SeriesIdentity, VideoFile]]]: + """Convert identities JSON dict to explicit identity-file pairs for analysis.""" movies_data = data.get("movies", []) series_data = data.get("series", []) - movie_identities = [] - for m in movies_data: - movie_identities.append( - MovieIdentity( - title=m["title"], - year=m.get("year"), - confidence=m["confidence"], - needs_review=m["needs_review"], - original_filename=m["filename"], - ) - ) - series_identities = [] - for s in series_data: - series_identities.append( - SeriesIdentity( - title=s["title"], - season=s.get("season"), - episodes=s.get("episodes", []), - confidence=s["confidence"], - needs_review=s["needs_review"], - original_filename=s["filename"], - ) - ) - video_files: list[VideoFile] = [] path_to_inventory: dict[str, VideoFile] = {} if inventory_files: path_to_inventory = {str(vf.path): vf for vf in inventory_files} + + movie_pairs: list[tuple[MovieIdentity, VideoFile]] = [] for m in movies_data: - vf = _video_file_from_record(m) - if path_to_inventory: - inv = path_to_inventory.get(str(vf.path)) - if inv: - vf = VideoFile( - path=inv.path, - filename=inv.filename, - size_bytes=inv.size_bytes, - modified_timestamp=inv.modified_timestamp, - category=inv.category, - resolution=inv.resolution, - codec=inv.codec, - duration_seconds=inv.duration_seconds, - bitrate_kbps=inv.bitrate_kbps, - ) - video_files.append(vf) + movie_pairs.append((_movie_identity_from_record(m), _video_file_from_inventory(m, path_to_inventory))) + + series_pairs: list[tuple[SeriesIdentity, VideoFile]] = [] for s in series_data: - vf = _video_file_from_record(s) - if path_to_inventory: - inv = path_to_inventory.get(str(vf.path)) - if inv: - vf = VideoFile( - path=inv.path, - filename=inv.filename, - size_bytes=inv.size_bytes, - modified_timestamp=inv.modified_timestamp, - category=inv.category, - resolution=inv.resolution, - codec=inv.codec, - duration_seconds=inv.duration_seconds, - bitrate_kbps=inv.bitrate_kbps, - ) - video_files.append(vf) - return movie_identities, series_identities, video_files + series_pairs.append((_series_identity_from_record(s), _video_file_from_inventory(s, path_to_inventory))) + + return movie_pairs, series_pairs + diff --git a/src/vlm/models.py b/src/vlm/models.py index 877e9d6..20e509f 100644 --- a/src/vlm/models.py +++ b/src/vlm/models.py @@ -7,7 +7,7 @@ for representing video files and their parsed identities. from dataclasses import dataclass, field from datetime import datetime from pathlib import Path -from typing import Optional +from typing import Optional, TypedDict @dataclass @@ -275,3 +275,91 @@ class DuplicateGroup: identity: MovieIdentity | SeriesIdentity files: list[VideoFile] quality_comparison: list[dict] + + +class VideoMetadataRecord(TypedDict, total=False): + """Embedded video metadata stored in identities records.""" + + size_bytes: int + modified_timestamp: str + resolution: str + codec: str + duration_seconds: float + bitrate_kbps: int + + +class IdentityRecord(TypedDict, total=False): + """Common record fields used in parsed/enriched JSON payloads.""" + + path: str + filename: str + category: str + title: str + display_title: str + confidence: float + needs_review: bool + canonical_id: str + title_zh: str + title_en: str + translation_source: str + reputation_score: float + reputation_votes: int + reputation_source: str + review_status: str + enrichment_confidence: float + provider_metadata: dict[str, str] + video_metadata: VideoMetadataRecord + note: str + + +class MovieIdentityRecord(IdentityRecord, total=False): + """TypedDict for movie entries in identities.json.""" + + year: int | None + + +class SeriesIdentityRecord(IdentityRecord, total=False): + """TypedDict for series entries in identities.json.""" + + season: int | None + episodes: list[int] + + +class ParsedIdentitiesJSON(TypedDict, total=False): + """Canonical parsed identities payload stored between pipeline stages.""" + + vlm_schema_version: str + metadata: dict[str, object] + movies: list[MovieIdentityRecord] + series: list[SeriesIdentityRecord] + anime: list[IdentityRecord] + other: list[IdentityRecord] + + +class AnalysisCompletenessRecord(TypedDict): + series_title: str + season: int + episodes_found: list[int] + episodes_missing: list[int] + + +class AnalysisDuplicateIdentityRecord(TypedDict): + type: str + title: str + year: int | None + season: int | None + episodes: list[int] + + +class AnalysisDuplicateRecord(TypedDict): + identity: AnalysisDuplicateIdentityRecord + files: list[str] + quality_comparison: list[dict] + + +class AnalysisJSON(TypedDict, total=False): + vlm_schema_version: str + metadata: dict[str, object] + completeness: list[AnalysisCompletenessRecord] + duplicates: list[AnalysisDuplicateRecord] + diff --git a/src/vlm/parser.py b/src/vlm/parser.py index 8e829e0..5ce6075 100644 --- a/src/vlm/parser.py +++ b/src/vlm/parser.py @@ -23,9 +23,11 @@ QUALITY_TAGS = [ r'\b10bit\b', r'\b8bit\b', ] -# Release group patterns (in brackets, but NOT years in parentheses) +# Release group patterns (in brackets or parentheses at start/end) RELEASE_GROUP_PATTERNS = [ - r'\[[\w\s\-\.]+\]', # [RARBG], [YTS], etc. + r'^\[[\w\s\-\.]+\]', # [Group] at start + r'\[[\w\s\-\.]+\]$', # [Group] at end + r'\b[\w\s\-\.]+[-_]Subs\b', # Group_Subs ] @@ -56,6 +58,12 @@ def remove_release_groups(text: str) -> str: result = text for pattern in RELEASE_GROUP_PATTERNS: result = re.sub(pattern, '', result) + + # Remove trailing parenthetical groups, but keep years like (2020) + match = re.search(r'\s*(\([^)]+\))$', result) + if match and not re.fullmatch(r'\(\d{4}\)', match.group(1)): + result = result[:match.start()].rstrip() + return result @@ -77,6 +85,22 @@ def normalize_title(title: str) -> str: return title.strip() +def humanize_parsed_title(title: str) -> str: + """Make parsed titles less likely to contain accidental all-caps tags. + + This keeps short acronyms like "IV" intact while softening long all-caps + words that are likely part of the filename rather than intentional styling. + """ + normalized = normalize_title(title) + words = [] + for word in normalized.split(): + if word.isalpha() and word.isupper() and len(word) > 3: + words.append(word.capitalize()) + else: + words.append(word) + return ' '.join(words).strip() + + def parse_movie( filename: str, extensions: Optional[list[str]] = None, @@ -127,7 +151,7 @@ def parse_movie( # Now clean the title title = remove_quality_tags(title) title = remove_release_groups(title) - title = normalize_title(title) + title = humanize_parsed_title(title or match.group(1)) return MovieIdentity( title=title, @@ -140,7 +164,7 @@ def parse_movie( # No year found - clean and extract title, flag for review cleaned = remove_quality_tags(name_without_ext) cleaned = remove_release_groups(cleaned) - title = normalize_title(cleaned) + title = humanize_parsed_title(cleaned or name_without_ext) return MovieIdentity( title=title, @@ -189,6 +213,8 @@ def parse_series( (r'(? dict[tuple[str, int], list[SeriesIdentity]]: + """Group parsed episodes by normalized series title and season number. Episodes are grouped by (normalized_title, season) tuple. Episodes with diff --git a/src/vlm/plan_review.py b/src/vlm/plan_review.py index a545227..607baf5 100644 --- a/src/vlm/plan_review.py +++ b/src/vlm/plan_review.py @@ -7,13 +7,7 @@ import re from pathlib import Path from vlm.models import ExecutionPlan, FileOperation - - -def _is_sample_path(path: Path) -> bool: - parts = [part.casefold() for part in path.parts] - if "sample" in parts: - return True - return bool(re.search(r"(^|[\s._-])sample($|[\s._-])", path.stem.casefold())) +from vlm.utils import is_sample_path def _extract_season_episode(operation: FileOperation) -> tuple[int | None, int | None]: @@ -63,7 +57,7 @@ def review_plan( if "manual review" in reason_l: flags.append("manual_review") counters["manual_review"] += 1 - if _is_sample_path(op.source_path): + if is_sample_path(op.source_path): flags.append("sample_source") counters["sample_source"] += 1 season, episode = _extract_season_episode(op) @@ -100,3 +94,4 @@ def save_review_csv(rows: list[dict[str, str]], output: Path) -> None: writer = csv.DictWriter(f, fieldnames=fields) writer.writeheader() writer.writerows(rows) + diff --git a/src/vlm/planner.py b/src/vlm/planner.py index 8978a01..688dfb8 100644 --- a/src/vlm/planner.py +++ b/src/vlm/planner.py @@ -13,7 +13,8 @@ from typing import Optional, Union from vlm.config import Config from vlm.duplicate_resolve import choose_keep_index -from vlm.utils import ensure_utc, is_within_root, sanitize_path_component, utc_now +from vlm.io import validate_plan_json +from vlm.utils import ensure_utc, is_sample_path, is_within_root, sanitize_path_component, utc_now from vlm.models import ( ExecutionPlan, FileOperation, @@ -31,15 +32,6 @@ NO_OP_REASON_SEASON_OUT_OF_RANGE = "Series needs manual review (season exceeds c NO_OP_REASON_EPISODE_OUT_OF_RANGE = "Series needs manual review (episode exceeds configured threshold)" -def _is_sample_path(path: Path) -> bool: - """Return True if path appears to be a sample clip.""" - parts = [part.casefold() for part in path.parts] - if "sample" in parts: - return True - stem = path.stem.casefold() - return bool(re.search(r"(^|[\s._-])sample($|[\s._-])", stem)) - - def _analyze_directory_impact(operations: list[FileOperation]) -> dict: """Analyze which directories will be emptied by the plan.""" # Get all source directories that have files being moved/renamed @@ -72,7 +64,7 @@ def _analyze_directory_impact(operations: list[FileOperation]) -> dict: return { "emptied_directories": emptied_dirs, - "warning_required": len(emptied_dirs) > 0 + "warning_required": len(emptied_dirs) > 0, } @@ -106,10 +98,11 @@ def generate_plan( operations.append(operation) metadata: dict = {} + validation_snapshot: dict[str, object] = {} if analysis_data is not None: - metadata["analysis_source"] = analysis_data.get("metadata", {}).get("source_identities", "") - metadata["duplicate_groups_considered"] = len(analysis_data.get("duplicates", [])) - metadata["completeness_seasons_with_gaps"] = len(analysis_data.get("completeness", [])) + validation_snapshot["analysis_source"] = analysis_data.get("metadata", {}).get("source_identities", "") + validation_snapshot["duplicate_groups_considered"] = len(analysis_data.get("duplicates", [])) + validation_snapshot["completeness_seasons_with_gaps"] = len(analysis_data.get("completeness", [])) if config.duplicate_keep != "manual": path_to_index = {str(vf.path): i for i, (vf, _) in enumerate(identities)} @@ -124,7 +117,7 @@ def generate_plan( if identity is not None and isinstance( identity, (MovieIdentity, SeriesIdentity) ): - if not config.plan_include_sample_files and _is_sample_path(identities[i][0].path): + if not config.plan_include_sample_files and is_sample_path(identities[i][0].path): # Keep sample files out of duplicate keep/quarantine competition by default. continue items.append((identities[i][0].path, identity)) @@ -169,15 +162,16 @@ def generate_plan( has_conflict=False, conflict_reason=None )) + validation_snapshot["emptied_directories"] = [str(d) for d in directory_analysis["emptied_directories"]] + validation_snapshot["directory_warning"] = True summary = _generate_summary(operations) summary_by_reason = _generate_summary_by_reason(operations) human_summary = _generate_human_summary(operations, summary, summary_by_reason, metadata) - # Add directory warnings to metadata - if directory_analysis["warning_required"]: - metadata["emptied_directories"] = [str(d) for d in directory_analysis["emptied_directories"]] - metadata["directory_warning"] = True + if validation_snapshot: + validation_snapshot["captured_at"] = utc_now().isoformat() + metadata["validation_snapshot"] = validation_snapshot return ExecutionPlan( plan_id=str(uuid.uuid4()), @@ -205,7 +199,7 @@ def _create_operation( Returns: FileOperation specifying what to do with the file """ - if not config.plan_include_sample_files and _is_sample_path(video_file.path): + if not config.plan_include_sample_files and is_sample_path(video_file.path): return FileOperation( operation_type="no-op", source_path=video_file.path, @@ -628,7 +622,7 @@ def save_plan(plan: ExecutionPlan, output_path: Path) -> None: # Write to JSON file with indentation for human readability with open(output_path, 'w', encoding='utf-8') as f: - json.dump(plan_dict, f, indent=2, ensure_ascii=False) + json.dump(validate_plan_json(plan_dict), f, indent=2, ensure_ascii=False) def load_plan(input_path: Path) -> ExecutionPlan: @@ -649,7 +643,7 @@ def load_plan(input_path: Path) -> ExecutionPlan: KeyError: If required fields are missing from the JSON """ with open(input_path, 'r', encoding='utf-8') as f: - plan_dict = json.load(f) + plan_dict = validate_plan_json(json.load(f)) # Reconstruct FileOperation objects operations = [ @@ -675,3 +669,56 @@ def load_plan(input_path: Path) -> ExecutionPlan: human_summary=plan_dict.get("human_summary", ""), metadata=plan_dict.get("metadata", {}), ) + + +def apply_review_to_plan(plan: ExecutionPlan, csv_path: Path) -> ExecutionPlan: + """Update a plan's operations based on a modified review CSV. + + Args: + plan: The original ExecutionPlan + csv_path: Path to the modified manual review CSV + + Returns: + Updated ExecutionPlan with modified operation types + """ + import csv + + # Create a copy of operations to modify + updated_ops = list(plan.operations) + modified_count = 0 + + with open(csv_path, "r", encoding="utf-8", newline="") as f: + reader = csv.DictReader(f) + for row in reader: + try: + # CSV index is 1-based + idx = int(row["index"]) - 1 + if 0 <= idx < len(updated_ops): + new_op_type = row["operation_type"] + old_op_type = updated_ops[idx].operation_type + + if new_op_type != old_op_type: + # Update the operation type (usually to 'no-op') + updated_ops[idx].operation_type = new_op_type + updated_ops[idx].reason = f"Modified via manual review: {updated_ops[idx].reason}" + modified_count += 1 + except (ValueError, KeyError): + continue + + if modified_count > 0: + # Re-generate summary and human summary for the updated plan + summary = _generate_summary(updated_ops) + summary_by_reason = _generate_summary_by_reason(updated_ops) + human_summary = _generate_human_summary(updated_ops, summary, summary_by_reason, plan.metadata) + + return ExecutionPlan( + plan_id=plan.plan_id, + created_at=plan.created_at, + operations=updated_ops, + summary=summary, + summary_by_reason=summary_by_reason, + human_summary=human_summary, + metadata=plan.metadata, + ) + + return plan diff --git a/src/vlm/review_display.py b/src/vlm/review_display.py new file mode 100644 index 0000000..7f4ce0b --- /dev/null +++ b/src/vlm/review_display.py @@ -0,0 +1,85 @@ +"""Shared helpers for human-readable plan review (CLI preview and TUI).""" + +from __future__ import annotations + +from pathlib import Path + +# Internal risk flag keys from plan_review.review_plan (pipe-separated in CSV). +RISK_FLAG_LABELS: dict[str, str] = { + "manual_review": "需人工判断", + "sample_source": "样片路径", + "high_season": "季号偏高", + "high_episode": "集号偏高", + "conflict": "目标冲突", +} + + +def risk_flags_to_labels(flags: str, *, max_len: int = 24) -> str: + """Map pipe-separated risk flags to short Chinese labels.""" + if not flags or flags.strip().lower() == "none": + return "" + parts = [p.strip() for p in flags.split("|") if p.strip()] + labels = [RISK_FLAG_LABELS.get(p, p) for p in parts] + text = " ".join(labels) + if len(text) <= max_len: + return text + return text[: max_len - 1] + "…" + + +def _display_path(p: Path, library_root: Path) -> str: + try: + resolved = p.resolve() + root = library_root.resolve() + rel = resolved.relative_to(root) + return str(rel) + except (ValueError, OSError): + return str(p) + + +def format_paths_for_detail( + source_s: str, + dest_s: str, + library_root: Path, +) -> str: + """Build multi-line before/after path text for review detail panes.""" + source = Path(source_s) + dest = Path(dest_s) if dest_s.strip() else None + src_line = _display_path(source, library_root) + lines = [f"来源: {src_line}", f"完整: {source}"] + if dest is not None: + dst_line = _display_path(dest, library_root) + lines.append(f"目标: {dst_line}") + lines.append(f"完整: {dest}") + else: + lines.append("目标: (无)") + return "\n".join(lines) + + +def build_csv_rows( + base_rows: list[dict[str, str]], + op_by_index: dict[int, str], +) -> list[dict[str, str]]: + """Return CSV row dicts with operation_type taken from op_by_index per 1-based index.""" + result: list[dict[str, str]] = [] + for r in base_rows: + idx = int(r["index"]) + new_r = dict(r) + if idx in op_by_index: + new_r["operation_type"] = op_by_index[idx] + result.append(new_r) + return result + + +def review_row_status_symbol( + op_by_index: dict[int, str], + initial_op_by_index: dict[int, str], + index: int, +) -> str: + """Return a single-character status marker for the review table.""" + cur = op_by_index.get(index, initial_op_by_index[index]) + init = initial_op_by_index[index] + if cur != init and cur == "no-op": + return "✗" + if cur != init and cur != "no-op": + return "✓" + return "·" diff --git a/src/vlm/review_tui.py b/src/vlm/review_tui.py new file mode 100644 index 0000000..3de930e --- /dev/null +++ b/src/vlm/review_tui.py @@ -0,0 +1,388 @@ +"""Textual TUI for reviewing high-risk plan operations.""" + +from __future__ import annotations + +from dataclasses import dataclass +from pathlib import Path + +from textual import on +from textual.app import App, ComposeResult +from textual.binding import Binding +from textual.containers import Container, Horizontal, ScrollableContainer, Vertical +from textual.geometry import Size +from textual.screen import ModalScreen, Screen +from textual.widgets import DataTable, Footer, Static + +from vlm.plan_review import save_review_csv +from vlm.review_display import ( + build_csv_rows, + format_paths_for_detail, + review_row_status_symbol, + risk_flags_to_labels, +) + + +def _index_from_row_key(row_key) -> int: # noqa: ANN001 - RowKey | str + if isinstance(row_key, str): + return int(row_key) + val = getattr(row_key, "value", None) + if val is None: + return int(row_key) + return int(val) + + +@dataclass(frozen=True) +class ReviewTUIContext: + """Inputs for the plan review TUI.""" + + rows: list[dict[str, str]] + counters: dict[str, int] + library_root: Path + output_csv: Path + plan_input: Path + summary_text: str + + +class SummaryScreen(Screen): + """Migration summary; Enter continues, q aborts.""" + + BINDINGS = [ + Binding("enter", "continue_", "继续", show=True), + Binding("q", "quit", "退出", show=True), + ] + + def __init__(self, ctx: ReviewTUIContext) -> None: + super().__init__() + self._ctx = ctx + + def compose(self) -> ComposeResult: + stats_lines = [ + "---", + "计划统计", + f" 总操作: {self._ctx.counters['total_operations']}", + f" 高危: {self._ctx.counters['high_risk_operations']}", + f" manual_review: {self._ctx.counters['manual_review']}", + f" sample_source: {self._ctx.counters['sample_source']}", + f" high_season: {self._ctx.counters['high_season']}", + f" high_episode: {self._ctx.counters['high_episode']}", + f" conflicts: {self._ctx.counters['conflicts']}", + "", + f"将要写入: {self._ctx.output_csv}", + "", + "默认仅审核标记为高危的操作(与 CSV 行一致)。", + "", + "Enter 进入审核 · q 退出", + ] + body = self._ctx.summary_text + "\n\n" + "\n".join(stats_lines) + yield ScrollableContainer(Static(body, id="summary_body")) + yield Footer() + + def action_continue_(self) -> None: + self.dismiss(True) + + def action_quit(self) -> None: + self.dismiss(False) + + +class ConfirmDiscardScreen(ModalScreen[bool]): + """Confirm discarding unsaved edits.""" + + BINDINGS = [ + Binding("y", "yes", show=False), + Binding("n", "no", show=False), + ] + + def compose(self) -> ComposeResult: + yield Container( + Static("未保存的修改将丢失。放弃? (y / n)", id="confirm_text"), + id="confirm_box", + ) + + def action_yes(self) -> None: + self.dismiss(True) + + def action_no(self) -> None: + self.dismiss(False) + + DEFAULT_CSS = """ + ConfirmDiscardScreen { + align: center middle; + } + #confirm_box { + width: auto; + height: auto; + padding: 1 2; + border: thick $primary; + background: $surface; + } + """ + + +class ReviewMainScreen(Screen): + """High-risk table + detail pane.""" + + BINDINGS = [ + Binding("up", "cursor_up", show=False), + Binding("down", "cursor_down", show=False), + Binding("k", "cursor_up", show=False), + Binding("j", "cursor_down", show=False), + Binding("a", "keep_row", "保留", show=True), + Binding("r", "reject_row", "驳回", show=True), + Binding("u", "undo_row", "撤销", show=True), + Binding("s", "save", "保存", show=True), + Binding("q", "request_quit", "退出", show=True), + ] + + def __init__(self, ctx: ReviewTUIContext) -> None: + super().__init__() + self.ctx = ctx + self._by_index: dict[int, dict[str, str]] = { + int(r["index"]): r for r in ctx.rows + } + self.initial_op_by_index: dict[int, str] = { + int(r["index"]): r["operation_type"] for r in ctx.rows + } + self.op_by_index: dict[int, str] = dict(self.initial_op_by_index) + + def compose(self) -> ComposeResult: + plan_s = str(self.ctx.plan_input) + if len(plan_s) > 72: + plan_s = plan_s[:35] + "…" + plan_s[-34:] + hdr = ( + f"{plan_s} · 高危 {self.ctx.counters['high_risk_operations']}" + f" / {self.ctx.counters['total_operations']}" + ) + yield Static(hdr, id="header_line") + with Horizontal(id="body"): + yield DataTable(id="review_table", cursor_type="row", zebra_stripes=True) + with ScrollableContainer(id="detail_scroll"): + yield Static("", id="detail_text") + yield Static( + "↑↓ j/k 移动 · a 保留 · r 驳回(no-op) · u 撤销本条 · s 保存退出 · q 退出", + id="footer_line", + ) + yield Footer() + + DEFAULT_CSS = """ + #header_line { + dock: top; + padding: 0 1; + background: $primary-darken-2; + color: $text; + } + #footer_line { + dock: bottom; + padding: 0 1; + background: $panel; + color: $text-muted; + } + #body { + layout: horizontal; + height: 1fr; + } + #body.vertical-split { + layout: vertical; + height: 1fr; + } + #review_table { + width: 1fr; + min-height: 5; + } + #body.vertical-split #review_table { + height: 40%; + } + #detail_scroll { + width: 1fr; + min-height: 5; + border-left: solid $primary-darken-3; + padding: 0 1; + } + #body.vertical-split #detail_scroll { + border-left: none; + border-top: solid $primary-darken-3; + height: 1fr; + } + """ + + def on_mount(self) -> None: + table = self.query_one("#review_table", DataTable) + table.cursor_type = "row" + table.add_column(" ", key="sym", width=3) + table.add_column("#", key="idx", width=4) + table.add_column("类型", key="op", width=11) + table.add_column("风险", key="risk", width=18) + table.add_column("文件", key="file") + + for r in self.ctx.rows: + idx = int(r["index"]) + sym = self._symbol_for(idx) + table.add_row( + sym, + str(idx), + self.op_by_index[idx], + risk_flags_to_labels(r["risk_flags"]), + Path(r["source_path"]).name, + key=str(idx), + ) + self._apply_body_layout(self.app.size) + if table.row_count > 0: + table.focus() + self._refresh_detail(_index_from_row_key(table.ordered_rows[0].key)) + else: + self.query_one("#detail_text", Static).update( + "无高危项。按 s 保存仅含表头的 CSV(与无 --tui 行为一致)。" + ) + + def _table(self) -> DataTable: + return self.query_one("#review_table", DataTable) + + def _symbol_for(self, index: int) -> str: + return review_row_status_symbol( + self.op_by_index, + self.initial_op_by_index, + index, + ) + + def _apply_body_layout(self, app_size: Size) -> None: + body = self.query_one("#body", Horizontal) + if app_size.width < 100: + body.add_class("vertical-split") + else: + body.remove_class("vertical-split") + + def on_resize(self, event) -> None: # noqa: ANN001 - textual Resize + self._apply_body_layout(self.app.size) + + def _current_index(self) -> int | None: + table = self._table() + if table.row_count == 0: + return None + row_index = table.cursor_coordinate.row + row = table.ordered_rows[row_index] + return _index_from_row_key(row.key) + + @on(DataTable.RowHighlighted) # type: ignore[misc] + def on_row_highlighted(self, event: DataTable.RowHighlighted) -> None: + if event.data_table.id != "review_table": + return + idx = _index_from_row_key(event.row_key) + self._refresh_detail(idx) + + def _refresh_detail(self, index: int) -> None: + r = self._by_index[index] + op = self.op_by_index[index] + paths = format_paths_for_detail( + r["source_path"], + r.get("destination_path", ""), + self.ctx.library_root, + ) + risk_cn = risk_flags_to_labels(r["risk_flags"], max_len=120) + summary = ( + f"#{index} · {op} · {Path(r['source_path']).name}" + + (f" · {risk_cn}" if risk_cn else "") + ) + text = ( + f"{summary}\n\n" + f"变更\n{paths}\n\n" + f"依据\n{r['reason']}\n\n" + f"标记\n{r['risk_flags']}" + ) + self.query_one("#detail_text", Static).update(text) + + def _refresh_row_cells(self, index: int) -> None: + table = self._table() + key = str(index) + sym = self._symbol_for(index) + table.update_cell(key, "sym", sym) + table.update_cell(key, "op", self.op_by_index[index]) + + def _update_dirty_header(self) -> None: + dirty = self._is_dirty() + hdr = self.query_one("#header_line", Static) + plan_s = str(self.ctx.plan_input) + if len(plan_s) > 72: + plan_s = plan_s[:35] + "…" + plan_s[-34:] + star = " *" if dirty else "" + hdr.update( + f"{plan_s}{star} · 高危 {self.ctx.counters['high_risk_operations']}" + f" / {self.ctx.counters['total_operations']}" + ) + + def _is_dirty(self) -> bool: + return self.op_by_index != self.initial_op_by_index + + def action_cursor_up(self) -> None: + if self._table().row_count: + self._table().action_cursor_up() + + def action_cursor_down(self) -> None: + if self._table().row_count: + self._table().action_cursor_down() + + def action_keep_row(self) -> None: + idx = self._current_index() + if idx is None: + return + self.op_by_index[idx] = self.initial_op_by_index[idx] + self._refresh_row_cells(idx) + self._refresh_detail(idx) + self._update_dirty_header() + + def action_reject_row(self) -> None: + idx = self._current_index() + if idx is None: + return + self.op_by_index[idx] = "no-op" + self._refresh_row_cells(idx) + self._refresh_detail(idx) + self._update_dirty_header() + + def action_undo_row(self) -> None: + self.action_keep_row() + + def action_save(self) -> None: + out_rows = build_csv_rows(self.ctx.rows, self.op_by_index) + save_review_csv(out_rows, self.ctx.output_csv) + self.dismiss("saved") + + def action_request_quit(self) -> None: + if not self._is_dirty(): + self.dismiss("aborted") + return + + def after_confirm(confirmed: bool | None) -> None: + if confirmed: + self.dismiss("aborted") + + self.app.push_screen(ConfirmDiscardScreen(), callback=after_confirm) + + +class PlanReviewApp(App): + """Application shell: summary screen then review screen.""" + + def __init__(self, ctx: ReviewTUIContext) -> None: + super().__init__() + self.ctx = ctx + + def on_mount(self) -> None: + self.push_screen(SummaryScreen(self.ctx), self._after_summary) + + def _after_summary(self, result: bool | None) -> None: + if not result: + self.exit(return_code=1) + return + self.push_screen(ReviewMainScreen(self.ctx), self._after_main) + + def _after_main(self, result: str | None) -> None: + if result == "saved": + self.exit(return_code=0) + else: + self.exit(return_code=1) + + +def run_plan_review_tui(ctx: ReviewTUIContext) -> int: + """Block until the user finishes the TUI. Returns process exit code.""" + app = PlanReviewApp(ctx) + app.run() + code = app.return_code + return 0 if code is None else code diff --git a/src/vlm/scanner.py b/src/vlm/scanner.py index 9a40799..d33d8cf 100644 --- a/src/vlm/scanner.py +++ b/src/vlm/scanner.py @@ -65,6 +65,15 @@ def scan_library( logger.error(f"Library root is not a directory: {root}") return [] + if include_video_metadata: + import shutil + if not shutil.which("ffprobe"): + logger.warning( + "ffprobe command not found in PATH. Video metadata extraction will be skipped. " + "Only file-level information (size, mtime) will be recorded." + ) + include_video_metadata = False + video_files = [] file_count = 0 discovered_paths = _discover_video_paths(root, config.video_extensions) diff --git a/src/vlm/utils.py b/src/vlm/utils.py index 46a37ae..9a7c85e 100644 --- a/src/vlm/utils.py +++ b/src/vlm/utils.py @@ -51,6 +51,17 @@ def canonical_path_str(path: Path) -> str: _PATH_SEPARATORS_PATTERN = re.compile(r"[\\/]+") +_SAMPLE_TOKEN_PATTERN = re.compile(r"(^|[\s._-])sample($|[\s._-])") + + +def is_sample_path(path: Path) -> bool: + """Return True if path appears to be a sample clip.""" + parts = [part.casefold() for part in path.parts] + if "sample" in parts: + return True + return bool(_SAMPLE_TOKEN_PATTERN.search(path.stem.casefold())) + + _CONTROL_CHARS_PATTERN = re.compile(r"[\x00-\x1f\x7f]") diff --git a/tests/test_cli_review_plan.py b/tests/test_cli_review_plan.py index d6dbc91..2d307ca 100644 --- a/tests/test_cli_review_plan.py +++ b/tests/test_cli_review_plan.py @@ -232,3 +232,112 @@ def test_review_plan_show_all_overrides_preview_limit(tmp_path): assert " - [2] " in result.output assert " - [3] " in result.output assert "more high-risk operations" not in result.output + + +def test_review_plan_tui_requires_interactive_terminal(tmp_path): + """--tui should fail when stdin/stdout are not TTY (e.g. CliRunner).""" + config_path = tmp_path / "config.yaml" + _write_config(config_path, tmp_path / "library") + + plan_path = tmp_path / "plan.json" + operations = [ + { + "operation_type": "move", + "source_path": str(tmp_path / "a.mkv"), + "destination_path": str(tmp_path / "b.mkv"), + "reason": "organize", + "has_conflict": False, + "conflict_reason": None, + }, + ] + _write_plan( + plan_path, + operations=operations, + summary={"total": 1, "move": 1, "rename": 0, "quarantine": 0, "no-op": 0}, + ) + + output_csv = tmp_path / "review.csv" + runner = CliRunner() + result = _invoke_review_plan( + runner, + config_path, + ["--input", str(plan_path), "--output", str(output_csv), "--tui"], + ) + + assert result.exit_code == 1 + assert "TTY" in result.output or "interactive terminal" in result.output + + +def test_review_plan_tui_stubbed_success(tmp_path, monkeypatch): + """With TTY check stubbed and run_plan_review_tui stubbed, CLI should succeed.""" + config_path = tmp_path / "config.yaml" + _write_config(config_path, tmp_path / "library") + + plan_path = tmp_path / "plan.json" + operations = [ + { + "operation_type": "move", + "source_path": str(tmp_path / "a.mkv"), + "destination_path": str(tmp_path / "b.mkv"), + "reason": "organize", + "has_conflict": False, + "conflict_reason": None, + }, + ] + _write_plan( + plan_path, + operations=operations, + summary={"total": 1, "move": 1, "rename": 0, "quarantine": 0, "no-op": 0}, + ) + + monkeypatch.setattr("vlm.cli._review_plan_tui_streams_ok", lambda: True) + monkeypatch.setattr("vlm.review_tui.run_plan_review_tui", lambda ctx: 0) + + output_csv = tmp_path / "review.csv" + runner = CliRunner() + result = _invoke_review_plan( + runner, + config_path, + ["--input", str(plan_path), "--output", str(output_csv), "--tui"], + ) + + assert result.exit_code == 0 + assert "Saved manual review CSV" in result.output + assert "Plan overview:" not in result.output + + +def test_review_plan_tui_stubbed_abort(tmp_path, monkeypatch): + """TUI return code 1 should surface as CLI failure.""" + config_path = tmp_path / "config.yaml" + _write_config(config_path, tmp_path / "library") + + plan_path = tmp_path / "plan.json" + operations = [ + { + "operation_type": "move", + "source_path": str(tmp_path / "a.mkv"), + "destination_path": str(tmp_path / "b.mkv"), + "reason": "organize", + "has_conflict": False, + "conflict_reason": None, + }, + ] + _write_plan( + plan_path, + operations=operations, + summary={"total": 1, "move": 1, "rename": 0, "quarantine": 0, "no-op": 0}, + ) + + monkeypatch.setattr("vlm.cli._review_plan_tui_streams_ok", lambda: True) + monkeypatch.setattr("vlm.review_tui.run_plan_review_tui", lambda ctx: 1) + + output_csv = tmp_path / "review.csv" + runner = CliRunner() + result = _invoke_review_plan( + runner, + config_path, + ["--input", str(plan_path), "--output", str(output_csv), "--tui"], + ) + + assert result.exit_code == 1 + assert "aborted" in result.output.lower() diff --git a/tests/test_duplicate_quality_metadata.py b/tests/test_duplicate_quality_metadata.py index 9042c06..8a67952 100644 --- a/tests/test_duplicate_quality_metadata.py +++ b/tests/test_duplicate_quality_metadata.py @@ -72,10 +72,10 @@ class TestDuplicateQualityWithMetadata: loaded = load_identities_json(identities_file) # Convert to analysis input - movie_identities, series_identities, video_files = identities_to_analysis_input(loaded) + movie_pairs, series_pairs = identities_to_analysis_input(loaded) # Create identity-file pairs - identity_file_pairs = list(zip(movie_identities, video_files)) + identity_file_pairs = movie_pairs # Detect duplicates duplicates = detect_duplicates(identity_file_pairs) @@ -151,10 +151,10 @@ class TestDuplicateQualityWithMetadata: loaded = load_identities_json(identities_file) # Convert to analysis input - movie_identities, series_identities, video_files = identities_to_analysis_input(loaded) + movie_pairs, series_pairs = identities_to_analysis_input(loaded) # Create identity-file pairs - identity_file_pairs = list(zip(movie_identities, video_files)) + identity_file_pairs = movie_pairs # Detect duplicates duplicates = detect_duplicates(identity_file_pairs) @@ -231,10 +231,10 @@ class TestDuplicateQualityWithMetadata: json.dump(data, f, indent=2) loaded = load_identities_json(identities_file) - movie_identities, series_identities, video_files = identities_to_analysis_input(loaded) + movie_pairs, series_pairs = identities_to_analysis_input(loaded) # Create identity-file pairs for series - identity_file_pairs = list(zip(series_identities, video_files)) + identity_file_pairs = series_pairs # Detect duplicates duplicates = detect_duplicates(identity_file_pairs) diff --git a/tests/test_io.py b/tests/test_io.py index 49aae8d..dc2115b 100644 --- a/tests/test_io.py +++ b/tests/test_io.py @@ -8,6 +8,7 @@ import pytest from vlm.io import ( _video_file_from_record, + load_analysis_json, load_identities_json, save_identities_json, ) @@ -260,3 +261,72 @@ class TestIdentitiesJsonRoundTrip: assert series["video_metadata"]["size_bytes"] == 500000000 assert series["video_metadata"]["resolution"] == "1920x1080" assert series["video_metadata"]["codec"] == "h264" + + +class TestJsonSchemaValidation: + """Tests for runtime schema validation on JSON artifacts.""" + + def test_save_identities_rejects_invalid_movie_shape(self, tmp_path): + identities_file = tmp_path / "identities.json" + invalid_data = { + "vlm_schema_version": "2.0", + "metadata": { + "generated": "2024-02-13T12:00:00", + "source_inventory": "test_inventory.csv", + "total_files": 1, + }, + "movies": [ + { + "path": "/library/movie/Movie1 (2024).mkv", + "filename": "Movie1 (2024).mkv", + "category": "movie", + "title": "Movie1", + "year": 2024, + "confidence": "high", + "needs_review": False, + } + ], + "series": [], + "anime": [], + "other": [], + } + + with pytest.raises(ValueError, match="confidence"): + save_identities_json(invalid_data, identities_file) + + def test_load_analysis_rejects_missing_required_fields(self, tmp_path): + analysis_file = tmp_path / "analysis.json" + analysis_file.write_text( + json.dumps( + { + "vlm_schema_version": "1.0", + "metadata": {"generated": "2024-01-01T00:00:00"}, + "completeness": [ + { + "series_title": "Show", + "season": 1, + "episodes_found": [1], + "episodes_missing": [2], + } + ], + "duplicates": [ + { + "identity": { + "type": "movie", + "title": "Test", + "year": 2024, + "season": None, + "episodes": [], + }, + "files": ["/library/movie/Test (2024).mkv"], + "quality_comparison": [], + } + ], + } + ), + encoding="utf-8", + ) + + loaded = load_analysis_json(analysis_file) + assert loaded["metadata"]["generated"] == "2024-01-01T00:00:00" + assert loaded["duplicates"][0]["identity"]["title"] == "Test" diff --git a/tests/test_planner.py b/tests/test_planner.py index 312110b..9a959e3 100644 --- a/tests/test_planner.py +++ b/tests/test_planner.py @@ -1,5 +1,6 @@ """Unit tests for plan generator.""" +import json import pytest from datetime import datetime, timezone from pathlib import Path @@ -12,7 +13,7 @@ from vlm.models import ( SeriesIdentity, VideoFile, ) -from vlm.planner import generate_plan +from vlm.planner import generate_plan, load_plan @pytest.fixture @@ -1255,3 +1256,66 @@ def test_series_rejected_by_review_generates_noop(config): plan = generate_plan([(video_file, identity)], config) assert plan.operations[0].operation_type == "no-op" assert "rejected" in plan.operations[0].reason.lower() + + +def test_save_and_load_plan_validates_schema(tmp_path): + """Saved plan artifacts should round-trip through schema validation.""" + plan = ExecutionPlan( + plan_id="plan-123", + created_at=datetime(2026, 4, 2, 12, 0, tzinfo=timezone.utc), + operations=[ + FileOperation( + operation_type="move", + source_path=Path("/mnt/nas/videos/movie/source.mkv"), + destination_path=Path("/mnt/nas/videos/movie/target.mkv"), + reason="move movie", + has_conflict=False, + ) + ], + summary={"move": 1, "rename": 0, "noop": 0, "delete": 0}, + summary_by_reason={"move movie": 1}, + human_summary="计划已生成", + metadata={"analysis_source": "analysis.json"}, + ) + + output_path = tmp_path / "plan.json" + from vlm.planner import save_plan + + save_plan(plan, output_path) + loaded = load_plan(output_path) + + assert loaded.plan_id == plan.plan_id + assert loaded.operations[0].source_path == plan.operations[0].source_path + assert loaded.operations[0].destination_path == plan.operations[0].destination_path + assert loaded.summary == plan.summary + assert loaded.summary_by_reason == plan.summary_by_reason + assert loaded.human_summary == plan.human_summary + assert loaded.metadata == plan.metadata + + +def test_load_plan_rejects_invalid_schema(tmp_path): + """Invalid plan artifacts should fail validation before deserialization.""" + invalid_path = tmp_path / "invalid-plan.json" + invalid_path.write_text( + json.dumps( + { + "vlm_schema_version": "1.0", + "plan_id": "plan-123", + "created_at": "2026-04-02T12:00:00+00:00", + "operations": [ + { + "operation_type": "move", + "source_path": "/mnt/nas/videos/movie/source.mkv", + "destination_path": "/mnt/nas/videos/movie/target.mkv", + "has_conflict": False, + } + ], + "summary": {"move": 1}, + } + ), + encoding="utf-8", + ) + + with pytest.raises(ValueError, match="plan JSON.operations\\[0\\]\\.reason"): + load_plan(invalid_path) + diff --git a/tests/test_review_display.py b/tests/test_review_display.py new file mode 100644 index 0000000..24e0c6e --- /dev/null +++ b/tests/test_review_display.py @@ -0,0 +1,56 @@ +"""Tests for vlm.review_display helpers.""" + +from pathlib import Path + +from vlm.review_display import ( + build_csv_rows, + format_paths_for_detail, + review_row_status_symbol, + risk_flags_to_labels, +) + + +def test_risk_flags_to_labels(): + assert "需人工判断" in risk_flags_to_labels("manual_review") + assert "目标冲突" in risk_flags_to_labels("conflict") + assert risk_flags_to_labels("") == "" + assert risk_flags_to_labels("unknown_flag") == "unknown_flag" + + +def test_format_paths_for_detail_relative(): + root = Path("/media/lib") + text = format_paths_for_detail( + str(root / "a" / "f.mkv"), + str(root / "b" / "f.mkv"), + root, + ) + assert "来源:" in text + assert "f.mkv" in text + assert "目标:" in text + + +def test_build_csv_rows_merges_operation_type(): + rows = [ + { + "index": "1", + "operation_type": "move", + "risk_flags": "manual_review", + "source_path": "/x", + "destination_path": "/y", + "reason": "r", + } + ] + merged = build_csv_rows(rows, {1: "no-op"}) + assert merged[0]["operation_type"] == "no-op" + assert merged[0]["risk_flags"] == "manual_review" + + +def test_review_row_status_symbol(): + initial = {1: "move"} + current = {1: "move"} + assert review_row_status_symbol(current, initial, 1) == "·" + current2 = {1: "no-op"} + assert review_row_status_symbol(current2, initial, 1) == "✗" + current3 = {1: "move"} + initial3 = {1: "no-op"} + assert review_row_status_symbol(current3, initial3, 1) == "✓" \ No newline at end of file diff --git a/uv.lock b/uv.lock index 6ec5d81..a3f0299 100644 --- a/uv.lock +++ b/uv.lock @@ -57,6 +57,56 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/cb/b1/3846dd7f199d53cb17f49cba7e651e9ce294d8497c8c150530ed11865bb8/iniconfig-2.3.0-py3-none-any.whl", hash = "sha256:f631c04d2c48c52b84d0d0549c99ff3859c98df65b3101406327ecc7d53fbf12", size = 7484, upload-time = "2025-10-18T21:55:41.639Z" }, ] +[[package]] +name = "linkify-it-py" +version = "2.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "uc-micro-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/2e/c9/06ea13676ef354f0af6169587ae292d3e2406e212876a413bf9eece4eb23/linkify_it_py-2.1.0.tar.gz", hash = "sha256:43360231720999c10e9328dc3691160e27a718e280673d444c38d7d3aaa3b98b", size = 29158, upload-time = "2026-03-01T07:48:47.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b4/de/88b3be5c31b22333b3ca2f6ff1de4e863d8fe45aaea7485f591970ec1d3e/linkify_it_py-2.1.0-py3-none-any.whl", hash = "sha256:0d252c1594ecba2ecedc444053db5d3a9b7ec1b0dd929c8f1d74dce89f86c05e", size = 19878, upload-time = "2026-03-01T07:48:46.098Z" }, +] + +[[package]] +name = "markdown-it-py" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mdurl" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/5b/f5/4ec618ed16cc4f8fb3b701563655a69816155e79e24a17b651541804721d/markdown_it_py-4.0.0.tar.gz", hash = "sha256:cb0a2b4aa34f932c007117b194e945bd74e0ec24133ceb5bac59009cda1cb9f3", size = 73070, upload-time = "2025-08-11T12:57:52.854Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/94/54/e7d793b573f298e1c9013b8c4dade17d481164aa517d1d7148619c2cedbf/markdown_it_py-4.0.0-py3-none-any.whl", hash = "sha256:87327c59b172c5011896038353a81343b6754500a08cd7a4973bb48c6d578147", size = 87321, upload-time = "2025-08-11T12:57:51.923Z" }, +] + +[package.optional-dependencies] +linkify = [ + { name = "linkify-it-py" }, +] + +[[package]] +name = "mdit-py-plugins" +version = "0.5.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b2/fd/a756d36c0bfba5f6e39a1cdbdbfdd448dc02692467d83816dff4592a1ebc/mdit_py_plugins-0.5.0.tar.gz", hash = "sha256:f4918cb50119f50446560513a8e311d574ff6aaed72606ddae6d35716fe809c6", size = 44655, upload-time = "2025-08-11T07:25:49.083Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fb/86/dd6e5db36df29e76c7a7699123569a4a18c1623ce68d826ed96c62643cae/mdit_py_plugins-0.5.0-py3-none-any.whl", hash = "sha256:07a08422fc1936a5d26d146759e9155ea466e842f5ab2f7d2266dd084c8dab1f", size = 57205, upload-time = "2025-08-11T07:25:47.597Z" }, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729, upload-time = "2022-08-14T12:40:10.846Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979, upload-time = "2022-08-14T12:40:09.779Z" }, +] + [[package]] name = "packaging" version = "26.0" @@ -66,6 +116,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b7/b9/c538f279a4e237a006a2c98387d081e9eb060d203d8ed34467cc0f0b9b53/packaging-26.0-py3-none-any.whl", hash = "sha256:b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529", size = 74366, upload-time = "2026-01-21T20:50:37.788Z" }, ] +[[package]] +name = "platformdirs" +version = "4.9.4" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/19/56/8d4c30c8a1d07013911a8fdbd8f89440ef9f08d07a1b50ab8ca8be5a20f9/platformdirs-4.9.4.tar.gz", hash = "sha256:1ec356301b7dc906d83f371c8f487070e99d3ccf9e501686456394622a01a934", size = 28737, upload-time = "2026-03-05T18:34:13.271Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/d7/97f7e3a6abb67d8080dd406fd4df842c2be0efaf712d1c899c32a075027c/platformdirs-4.9.4-py3-none-any.whl", hash = "sha256:68a9a4619a666ea6439f2ff250c12a853cd1cbd5158d258bd824a7df6be2f868", size = 21216, upload-time = "2026-03-05T18:34:12.172Z" }, +] + [[package]] name = "pluggy" version = "1.6.0" @@ -166,6 +225,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f1/12/de94a39c2ef588c7e6455cfbe7343d3b2dc9d6b6b2f40c4c6565744c873d/pyyaml-6.0.3-cp314-cp314t-win_arm64.whl", hash = "sha256:ebc55a14a21cb14062aa4162f906cd962b28e2e9ea38f9b4391244cd8de4ae0b", size = 149341, upload-time = "2025-09-25T21:32:56.828Z" }, ] +[[package]] +name = "rich" +version = "14.3.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py" }, + { name = "pygments" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b3/c6/f3b320c27991c46f43ee9d856302c70dc2d0fb2dba4842ff739d5f46b393/rich-14.3.3.tar.gz", hash = "sha256:b8daa0b9e4eef54dd8cf7c86c03713f53241884e814f4e2f5fb342fe520f639b", size = 230582, upload-time = "2026-02-19T17:23:12.474Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/25/b208c5683343959b670dc001595f2f3737e051da617f66c31f7c4fa93abc/rich-14.3.3-py3-none-any.whl", hash = "sha256:793431c1f8619afa7d3b52b2cdec859562b950ea0d4b6b505397612db8d5362d", size = 310458, upload-time = "2026-02-19T17:23:13.732Z" }, +] + [[package]] name = "sortedcontainers" version = "2.4.0" @@ -175,6 +247,23 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/32/46/9cb0e58b2deb7f82b84065f37f3bffeb12413f947f9388e4cac22c4621ce/sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0", size = 29575, upload-time = "2021-05-16T22:03:41.177Z" }, ] +[[package]] +name = "textual" +version = "8.2.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "markdown-it-py", extra = ["linkify"] }, + { name = "mdit-py-plugins" }, + { name = "platformdirs" }, + { name = "pygments" }, + { name = "rich" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/cf/2f/d44f0f12b3ddb1f0b88f7775652e99c6b5a43fd733badf4ce064bdbfef4a/textual-8.2.3.tar.gz", hash = "sha256:beea7b86b03b03558a2224f0cc35252e60ef8b0c4353b117b2f40972902d976a", size = 1848738, upload-time = "2026-04-05T09:12:45.338Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/28/a81d6ce9f4804818bd1231a9a6e4d56ea84ebbe8385c49591444f0234fa2/textual-8.2.3-py3-none-any.whl", hash = "sha256:5008ac581bebf1f6fa0520404261844a231e5715fdbddd10ca73916a3af48ca2", size = 724231, upload-time = "2026-04-05T09:12:48.747Z" }, +] + [[package]] name = "tomli" version = "2.4.0" @@ -238,6 +327,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, ] +[[package]] +name = "uc-micro-py" +version = "2.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/78/67/9a363818028526e2d4579334460df777115bdec1bb77c08f9db88f6389f2/uc_micro_py-2.0.0.tar.gz", hash = "sha256:c53691e495c8db60e16ffc4861a35469b0ba0821fe409a8a7a0a71864d33a811", size = 6611, upload-time = "2026-03-01T06:31:27.526Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/73/d21edf5b204d1467e06500080a50f79d49ef2b997c79123a536d4a17d97c/uc_micro_py-2.0.0-py3-none-any.whl", hash = "sha256:3603a3859af53e5a39bc7677713c78ea6589ff188d70f4fee165db88e22b242c", size = 6383, upload-time = "2026-03-01T06:31:26.257Z" }, +] + [[package]] name = "video-library-manager" version = "0.1.0" @@ -251,6 +349,10 @@ dependencies = [ dev = [ { name = "hypothesis" }, { name = "pytest" }, + { name = "textual" }, +] +tui = [ + { name = "textual" }, ] [package.metadata] @@ -259,5 +361,7 @@ requires-dist = [ { name = "hypothesis", marker = "extra == 'dev'", specifier = ">=6.82.0" }, { name = "pytest", marker = "extra == 'dev'", specifier = ">=7.4.0" }, { name = "pyyaml", specifier = ">=6.0" }, + { name = "textual", marker = "extra == 'dev'", specifier = ">=0.47.0" }, + { name = "textual", marker = "extra == 'tui'", specifier = ">=0.47.0" }, ] -provides-extras = ["dev"] +provides-extras = ["dev", "tui"]